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

Side by Side Diff: chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json

Issue 1138503005: Fix examples for File System Provider API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added missing callbacks. Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/background.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": "File System Provider API Extension Example", 2 "name": "File System Provider API Extension Example",
3 "version": "0.1", 3 "version": "0.1",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "description": 5 "description":
6 "Demonstrate features of the API like mounting, listing directories, etc f or extensions.", 6 "Demonstrate features of the API like mounting, listing directories, etc f or extensions.",
7 "permissions": [ 7 "permissions": [
8 "fileSystemProvider" 8 "fileSystemProvider"
9 ], 9 ],
10 "file_system_provider_capabilities": {
11 "source": "network"
12 },
10 "background": { 13 "background": {
11 "scripts": [ 14 "scripts": [
12 "background.js" 15 "background.js"
13 ] 16 ]
14 } 17 }
15 } 18 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698