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

Unified Diff: chrome/test/data/chromeos/app_mode/multi_app_kiosk/src/secondary_app_3/main.js

Issue 1301323005: Implement kiosk multiple apps feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits. Created 5 years, 4 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/test/data/chromeos/app_mode/multi_app_kiosk/src/secondary_app_3/main.js
diff --git a/chrome/test/data/chromeos/app_mode/multi_app_kiosk/src/secondary_app_3/main.js b/chrome/test/data/chromeos/app_mode/multi_app_kiosk/src/secondary_app_3/main.js
new file mode 100644
index 0000000000000000000000000000000000000000..15cb92d9985ffe3dfcc6063902d8345e2b8afa88
--- /dev/null
+++ b/chrome/test/data/chromeos/app_mode/multi_app_kiosk/src/secondary_app_3/main.js
@@ -0,0 +1,11 @@
+// Copyright (c) 2015 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) {
+ });
+});

Powered by Google App Engine
This is Rietveld 408576698