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

Unified Diff: extensions/test/data/manifest_tests/kiosk_secondary_app_multi_apps.json

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: extensions/test/data/manifest_tests/kiosk_secondary_app_multi_apps.json
diff --git a/extensions/test/data/manifest_tests/kiosk_secondary_app_multi_apps.json b/extensions/test/data/manifest_tests/kiosk_secondary_app_multi_apps.json
new file mode 100644
index 0000000000000000000000000000000000000000..60e4b2cd98e0d36d9ffd902e10e1ae33e5545188
--- /dev/null
+++ b/extensions/test/data/manifest_tests/kiosk_secondary_app_multi_apps.json
@@ -0,0 +1,24 @@
+{
+ "manifest_version": 2,
+ "name": "Test Kiosk App for multi-apps",
+ "minimum_chrome_version": "24.0.1307.0",
+ "version": "1.0.0",
+ "icons": {
+ "128": "icon-128.png",
+ "16": "icon-16.png"
+ },
+ "app": {
+ "background": {
+ "scripts": ["main.js"]
+ }
+ },
+ "kiosk_enabled": true,
+ "offline_enabled": true,
+ "kiosk_secondary_apps": [
+ {"id": "ihplaomghjbeafnpnjkhppmfpnmdihgd"},
+ {"id": "fiehokkcgaojmbhfhlpiheggjhaedjoc"}
+ ],
+ "permissions": [
+ "power"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698