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

Side by Side Diff: chrome/test/data/extensions/manifest_tests/filebrowser_invalid_access_permission.json

Issue 1030133002: Move the check for fileBrowserHandler permission to FileBrowserHandler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test for OS != OS_CHROMEOS. Created 5 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
OLDNEW
1 { 1 {
2 "name": "test", 2 "name": "test",
3 "version": "1", 3 "version": "1",
4 "permissions": [
5 "fileBrowserHandler"
6 ],
4 "file_browser_handlers": [ 7 "file_browser_handlers": [
5 { 8 {
6 "id" : "ID", 9 "id" : "ID",
7 "default_title" : "Default title", 10 "default_title" : "Default title",
8 "default_icon" : "icon.png", 11 "default_icon" : "icon.png",
9 "file_filters" : [ 12 "file_filters" : [
10 "filesystem:*.txt" 13 "filesystem:*.txt"
11 ], 14 ],
12 "file_access": [ "read", "read@write" ] 15 "file_access": [ "read", "read@write" ]
13 } 16 }
14 ] 17 ]
15 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698