| Index: chrome/browser/resources/apps_debugger/background.js
|
| diff --git a/chrome/browser/resources/apps_debugger/background.js b/chrome/browser/resources/apps_debugger/background.js
|
| index d5042da674f96253b73ca5b698473784f320f2cd..8d047a761fd517f593e74f7444072e956dc5b666 100644
|
| --- a/chrome/browser/resources/apps_debugger/background.js
|
| +++ b/chrome/browser/resources/apps_debugger/background.js
|
| @@ -4,17 +4,12 @@
|
|
|
| var mainWindow = null;
|
| chrome.app.runtime.onLaunched.addListener(function() {
|
| - if (mainWindow && !mainWindow.contentWindow.closed) {
|
| - mainWindow.focus();
|
| - } else {
|
| - chrome.app.window.create('main.html', {
|
| - id: 'apps_debugger',
|
| - minHeight: 600,
|
| - minWidth: 800,
|
| - height: 600,
|
| - width: 800,
|
| - }, function(win) {
|
| - mainWindow = win;
|
| - });
|
| - }
|
| + chrome.app.window.create('main.html', {
|
| + id: 'apps_devtool',
|
| + minHeight: 600,
|
| + minWidth: 800,
|
| + height: 600,
|
| + width: 800,
|
| + singleton: true
|
| + });
|
| });
|
|
|