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

Side by Side Diff: chrome/test/data/extensions/api_test/filesystem_handler_write/manifest.json

Issue 9741002: Adding file access permissions to fileBrowserHandler manifest. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unit_tests Created 8 years, 8 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80 Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cW eRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==", 2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80 Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cW eRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==",
3 "name": "ChromeOS file system intent hanlder extension", 3 "name": "ChromeOS file system intent hanlder extension",
4 "version": "0.1", 4 "version": "0.1",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "description": "Tests of chrome.fileSystem.* methods", 6 "description": "Tests of chrome.fileSystem.* methods",
7 "background": { 7 "background": {
8 "scripts": ["tab.js"] 8 "scripts": ["tab.js"]
9 }, 9 },
10 "file_browser_handlers": [ 10 "file_browser_handlers": [
11 { 11 {
12 "id" : "AbcAction", 12 "id" : "TestAction_aBc",
13 "default_title" : "abc file action.", 13 "default_title" : "abc file action.",
14 "default_icon" : "icon.png", 14 "default_icon" : "icon.png",
15 "file_filters" : [ "filesystem:*.aBc", "filesystem:*.abcfile" ] 15 "file_filters" : [ "filesystem:*.aBc", "filesystem:*.abcfile" ]
16 }, 16 },
17 { 17 {
18 "id" : "123Action", 18 "id" : "123Action",
19 "default_title" : "123 file action", 19 "default_title" : "123 file action",
20 "default_icon" : "icon.png", 20 "default_icon" : "icon.png",
21 "file_filters" : [ "filesystem:*.123", "filesystem:*.1234" ] 21 "file_filters" : [ "filesystem:*.123", "filesystem:*.1234" ]
22 }, 22 },
23 { 23 {
24 "id" : "BaseAction", 24 "id" : "TestAction_def",
25 "default_title" : "Base action", 25 "default_title" : "Read-only action",
26 "default_icon" : "icon.png", 26 "default_icon" : "icon.png",
27 "file_filters" : [ "filesystem:*", "filesystem:*.*" ] 27 "file_filters" : [ "filesystem:*.def" ],
28 "file_access": [ "read" ]
29
28 } 30 }
29 ], 31 ],
30 "permissions": [ 32 "permissions": [
31 "fileBrowserHandler", 33 "fileBrowserHandler",
32 "tabs", 34 "tabs",
33 "unlimitedStorage" 35 "unlimitedStorage"
34 ] 36 ]
35 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698