Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(452)

Unified Diff: chrome/browser/resources/apps_debugger/background.js

Issue 15389003: Loosen a bit the HTML hierarchy required for Tabs to work, Improved UX of the dev tools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed call to console.trace() Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 2704bcd70c18647a9f400d27d00ea3deeb43f9c7..d5042da674f96253b73ca5b698473784f320f2cd 100644
--- a/chrome/browser/resources/apps_debugger/background.js
+++ b/chrome/browser/resources/apps_debugger/background.js
@@ -8,8 +8,11 @@ chrome.app.runtime.onLaunched.addListener(function() {
mainWindow.focus();
} else {
chrome.app.window.create('main.html', {
- width: 768,
- height: 1024,
+ id: 'apps_debugger',
+ minHeight: 600,
+ minWidth: 800,
+ height: 600,
+ width: 800,
}, function(win) {
mainWindow = win;
});

Powered by Google App Engine
This is Rietveld 408576698