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

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

Issue 10067021: Postpone setting up file handler's file permissions if handler is running lazy background page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
(Empty)
1 {
2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80 Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cW eRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==",
3 "name": "ChromeOS file system intent hanlder extension",
4 "version": "1.1",
5 "manifest_version": 2,
6 "description": "Tests of chrome.fileSystem.* methods",
7 "background": {
8 "transient": true,
9 "persistent": false,
10 "scripts": ["background.js"]
11 },
12 "file_browser_handlers": [
13 {
14 "id" : "AbcAction",
15 "default_title" : "abc file action.",
16 "default_icon" : "icon.png",
17 "file_filters" : [ "filesystem:*.aBc", "filesystem:*.abcfile" ]
18 },
19 {
20 "id" : "123Action",
21 "default_title" : "123 file action",
22 "default_icon" : "icon.png",
23 "file_filters" : [ "filesystem:*.123", "filesystem:*.1234" ]
24 },
25 {
26 "id" : "BaseAction",
27 "default_title" : "Base action",
28 "default_icon" : "icon.png",
29 "file_filters" : [ "filesystem:*", "filesystem:*.*" ]
30 }
31 ],
32 "permissions": [
33 "fileBrowserHandler",
34 "tabs",
35 "unlimitedStorage",
36 "experimental"
37
38 ]
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698