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

Unified Diff: chrome/browser/resources/chromeos/demo_app/manifest.json

Issue 156493004: Add the ability to show a demo app on OOBE if a machine is derelict. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/browser/resources/chromeos/demo_app/manifest.json
diff --git a/chrome/browser/resources/chromeos/demo_app/manifest.json b/chrome/browser/resources/chromeos/demo_app/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..b48679ba478fa20e64285590697b6f3d011ea64a
--- /dev/null
+++ b/chrome/browser/resources/chromeos/demo_app/manifest.json
@@ -0,0 +1,14 @@
+{
bartfab (slow) 2014/02/13 19:51:53 I find it strange that we ship the manifest with t
rkc 2014/02/13 23:22:01 We're loading this as a component app, not a regul
bartfab (slow) 2014/02/17 15:53:46 When loading the app, you specify the path to the
+ // chrome-extension://klimoghijjogocdbaikffefjfcfheiel
bartfab (slow) 2014/02/13 19:51:53 Comments are not allowed in JSON. This file is inv
rkc 2014/02/13 23:22:01 Almost every component app manifest in the tree ha
bartfab (slow) 2014/02/17 15:53:46 It's still invalid JSON :).
+ "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqTqJNPnnhAarSbA5aPvPU/h6BxvHO+PWQLVab5RyJUxl1eVnZFx9sIGoXctUgKG+DXpSflYhsvK7opMd1jPqdeSjeSvIDOlsSNX45G+FhAqPQ7OHDdKboQb86TbE53n4qXYamQcx09VIJhi19mPBdqod6myCrTYjPukKiNwAlIEz6eAQL/++uZnIyRzvkht3aMMSfA2PP1qg0ie9aHE/bTwPec9I1kUIe4dPz4NaI5hKxKoDVk2TC9MNNEUx1YznuZNP6Vr21ZRutaOIiptnz1/QJXVr37EMqKvEwNJ/zGFhk1nNju7hYRTbf55CID94yWY14SevnO1nprEGv8+zAwIDAQAB",
+ "name": "Demo App",
+ "version": "1.0",
+ "manifest_version": 2,
+ "description": "ChromeOS Demo App",
+ "permissions": ["power"],
+ "app": {
+ "background": {
+ "scripts": ["js/launch.js"]
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698