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

Side by Side Diff: chrome/test/data/extensions/platform_apps/minimal_id/test.js

Issue 11238055: Re-open DevTools windows for PackagedApps if they are reloaded with DevTools open. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: more encapsulation, self-nit unit test code, add expected FAILS_ for debug builds Created 8 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 chrome.app.runtime.onLaunched.addListener(function() { 5 chrome.app.runtime.onLaunched.addListener(function() {
6 chrome.app.window.create('chrome://settings-frame/settings', { 6 chrome.app.window.create('main.html',
7 'height': 550, 7 {id: 'minimal_id'},
8 'width': 640, 8 function () {});
benwells 2012/10/24 03:24:08 Nit: You don't need the callback.
tapted 2012/10/24 04:03:57 Done.
9 });
10 }); 9 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698