Commit 68917948 authored by kinaba@chromium.org's avatar kinaba@chromium.org

Files.app: Don't pass {singleton: false} to chrome.app.window.create.

It's deprecated in r233176 and the option is the current default.

BUG=231166

Review URL: https://codereview.chromium.org/101353002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238417 0039d316-1c4b-4281-b951-d872f2087c98
parent 0bd2c49b
...@@ -353,8 +353,7 @@ var FILE_MANAGER_WINDOW_CREATE_OPTIONS = Object.freeze({ ...@@ -353,8 +353,7 @@ var FILE_MANAGER_WINDOW_CREATE_OPTIONS = Object.freeze({
minHeight: 240, minHeight: 240,
frame: 'none', frame: 'none',
hidden: true, hidden: true,
transparentBackground: true, transparentBackground: true
singleton: false
}); });
/** /**
...@@ -527,8 +526,7 @@ var AUDIO_PLAYER_CREATE_OPTIONS = Object.freeze({ ...@@ -527,8 +526,7 @@ var AUDIO_PLAYER_CREATE_OPTIONS = Object.freeze({
minHeight: 35 + 58, minHeight: 35 + 58,
minWidth: 280, minWidth: 280,
height: 35 + 58, height: 35 + 58,
width: 280, width: 280
singleton: false
}); });
var audioPlayer = new SingletonAppWindowWrapper('mediaplayer.html', var audioPlayer = new SingletonAppWindowWrapper('mediaplayer.html',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment