Chromium Code Reviews| Index: chrome/browser/resources/hotword_audio_verification/eventPage.js |
| diff --git a/chrome/browser/resources/chromeos/first_run/app/background.js b/chrome/browser/resources/hotword_audio_verification/eventPage.js |
| similarity index 61% |
| copy from chrome/browser/resources/chromeos/first_run/app/background.js |
| copy to chrome/browser/resources/hotword_audio_verification/eventPage.js |
| index 5d1ba842e5d9380d2ff644289cc2818cfc247d26..c734c78f4d99dd0c3dae239443cbad09d69dcb94 100644 |
| --- a/chrome/browser/resources/chromeos/first_run/app/background.js |
| +++ b/chrome/browser/resources/hotword_audio_verification/eventPage.js |
| @@ -1,4 +1,4 @@ |
| -// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
|
Dan Beam
2014/08/22 21:52:15
this file should be named event_page.js
kcarattini
2014/08/25 00:43:22
Done.
|
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| @@ -6,8 +6,9 @@ chrome.app.runtime.onLaunched.addListener(function() { |
| chrome.app.window.create('main.html', { |
| 'frame': 'none', |
| 'resizable': false, |
| - 'hidden': true, |
| - }, function(appWindow) { |
| - appWindow.contentWindow.appWindow = appWindow; |
| + 'bounds': { |
| + 'width': 710, |
| + 'height': 535 |
| + } |
| }); |
| }); |