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

Side by Side Diff: chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/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
OLDNEW
1 { 1 {
2 "name": "Fake Archive Handler App", 2 "name": "Fake Archive Handler App",
3 "version": "0.1", 3 "version": "0.1",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "description": "Demonstrate File System Provider API usage for apps.", 5 "description": "Demonstrate File System Provider API usage for apps.",
6 "permissions": [ 6 "permissions": [
7 "fileSystemProvider", 7 "fileSystemProvider",
8 {"fileSystem": ["retainEntries"]}, 8 {"fileSystem": ["retainEntries"]},
9 "storage" 9 "storage"
10 ], 10 ],
11 "file_handlers": { 11 "file_handlers": {
12 "fake": { 12 "fake": {
13 "types": ["application/fake"], 13 "types": ["application/fake"],
14 "extensions": ["fake"], 14 "extensions": ["fake"],
15 "title": "Open fake archive" 15 "title": "Open fake archive"
16 } 16 }
17 }, 17 },
18 "file_system_provider_capabilities": {
19 "multiple_mounts": true,
20 "source": "file"
21 },
18 "app": { 22 "app": {
19 "background": { 23 "background": {
20 "scripts": [ 24 "scripts": [
21 "background.js" 25 "background.js"
22 ] 26 ]
23 } 27 }
24 } 28 }
25 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698