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

Unified Diff: chrome/common/extensions/docs/examples/extensions/calculator/manifest.json

Issue 10544059: Change the platform app manifest structure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update for getDisplayPath, implement restrictions via _manifest_features.json Created 8 years, 6 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/common/extensions/docs/examples/extensions/calculator/manifest.json
diff --git a/chrome/common/extensions/docs/examples/extensions/calculator/manifest.json b/chrome/common/extensions/docs/examples/extensions/calculator/manifest.json
index 55917a355b07fd75984ff88a9aaf8442fa582101..4019db94de4397237cd1f70ad22582c2e4015295 100644
--- a/chrome/common/extensions/docs/examples/extensions/calculator/manifest.json
+++ b/chrome/common/extensions/docs/examples/extensions/calculator/manifest.json
@@ -3,16 +3,17 @@
"description": "Add numbers. Now includes subtraction!",
"manifest_version": 2,
"version": "1.0.1",
- "background": {
- "scripts": ["main.js"]
+ "app": {
+ "background": {
+ "scripts": ["main.js"]
+ }
},
- "platform_app": true,
"icons": {
"16": "icon_16.png",
"128": "icon_128.png"
},
"permissions": [
"experimental",
- "windows"
+ "appWindow"
]
}
« no previous file with comments | « chrome/common/extensions/docs/examples/extensions/calculator/main.js ('k') | chrome/common/extensions/docs/samples.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698