Chromium Code Reviews| Index: chrome/test/data/extensions/platform_apps/minimal_id/test.js |
| diff --git a/chrome/browser/resources/settings_app/settings_app.js b/chrome/test/data/extensions/platform_apps/minimal_id/test.js |
| similarity index 63% |
| copy from chrome/browser/resources/settings_app/settings_app.js |
| copy to chrome/test/data/extensions/platform_apps/minimal_id/test.js |
| index 3385c80fc4f97f0f3a7e3246c2baf5861e8a9f0e..05550ea0393c829e46129bac4fddfaf7da582827 100644 |
| --- a/chrome/browser/resources/settings_app/settings_app.js |
| +++ b/chrome/test/data/extensions/platform_apps/minimal_id/test.js |
| @@ -3,8 +3,7 @@ |
| // found in the LICENSE file. |
| chrome.app.runtime.onLaunched.addListener(function() { |
| - chrome.app.window.create('chrome://settings-frame/settings', { |
| - 'height': 550, |
| - 'width': 640, |
| - }); |
| + chrome.app.window.create('main.html', |
| + {id: 'minimal_id'}, |
| + function () {}); |
|
benwells
2012/10/24 03:24:08
Nit: You don't need the callback.
tapted
2012/10/24 04:03:57
Done.
|
| }); |