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

Side by Side Diff: chrome/common/extensions/docs/examples/apps/calculator/app/manifest.json

Issue 11316346: Make calculator app handle onRestarted events. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update variable names Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/extensions/docs/examples/apps/calculator/app/controller.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "Calculator", 2 "name": "Calculator",
3 "description": "A simple calculator.", 3 "description": "A simple calculator.",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "minimum_chrome_version": "23", 5 "minimum_chrome_version": "23",
6 "version": "1.3.1", 6 "version": "1.3.1",
7 "app": {"background": {"scripts": ["model.js", "view.js", "controller.js"]}}, 7 "app": {"background": {"scripts": ["model.js", "view.js", "controller.js"]}},
8 "icons": { 8 "icons": {
9 "16": "images/icon-16x16.png", 9 "16": "images/icon-16x16.png",
10 "128": "images/icon-128x128.png" 10 "128": "images/icon-128x128.png"
11 } 11 },
12 "permissions": ["storage"]
12 } 13 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/examples/apps/calculator/app/controller.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698