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

Unified Diff: extensions/common/api/extensions_manifest_types.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/common/api/extensions_manifest_types.json
diff --git a/extensions/common/api/extensions_manifest_types.json b/extensions/common/api/extensions_manifest_types.json
index d698273fdb4a32785febb2eb024b65e5fe98af51..6057e4e7f45fab8952398349ee21c6ccd3b288e9 100644
--- a/extensions/common/api/extensions_manifest_types.json
+++ b/extensions/common/api/extensions_manifest_types.json
@@ -207,7 +207,21 @@
}
}
}
- }
+ },
+ {
+ "id": "KioskSecondaryApps",
+ "type": "array",
+ "description": "The <code>kiosk_secondary_apps</code> manifest property lists the secondary kiosk apps to be deployed by the primary kiosk app.",
+ "items": {
+ "type": "object",
+ "properties": {
+ "id": {
+ "description": "ID of secondary kiosk app",
+ "type": "string"
+ }
+ }
+ }
+ }
]
}
]

Powered by Google App Engine
This is Rietveld 408576698