Index: chrome/test/data/chromeos/app_mode/multi_app_kiosk/src/primary_app/v1/main.js |
diff --git a/chrome/test/data/chromeos/app_mode/multi_app_kiosk/src/primary_app/v1/main.js b/chrome/test/data/chromeos/app_mode/multi_app_kiosk/src/primary_app/v1/main.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2e23fdc4a1f0040815a19cc51619d33792b5e6c1 |
--- /dev/null |
+++ b/chrome/test/data/chromeos/app_mode/multi_app_kiosk/src/primary_app/v1/main.js |
@@ -0,0 +1,11 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+chrome.app.runtime.onLaunched.addListener(function(launchData) { |
+ chrome.app.window.create('app_main.html', |
+ { 'width': 1920, |
+ 'height': 1080 }, |
+ function(window) { |
+ }); |
+}); |