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

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

Issue 8758008: Move another block of extension tests to manifest_version 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 "description": "Tests of chrome.fileSystem.* methods", 6 "description": "Tests of chrome.fileSystem.* methods",
6 "background_page": "background.html", 7 "background_page": "background.html",
7 "file_browser_handlers": [ 8 "file_browser_handlers": [
8 { 9 {
9 "id" : "TextAction", 10 "id" : "TextAction",
10 "default_title" : "txt file action.", 11 "default_title" : "txt file action.",
11 "default_icon" : "icon.png", 12 "default_icon" : "icon.png",
12 "file_filters" : [ "filesystem:*.tXt", "filesystem:*.text" ] 13 "file_filters" : [ "filesystem:*.tXt", "filesystem:*.text" ]
13 }, 14 },
14 { 15 {
15 "id" : "JpegAction", 16 "id" : "JpegAction",
16 "default_title" : "jpg file action", 17 "default_title" : "jpg file action",
17 "default_icon" : "icon.png", 18 "default_icon" : "icon.png",
18 "file_filters" : [ "filesystem:*.jpg", "filesystem:*.jpeg" ] 19 "file_filters" : [ "filesystem:*.jpg", "filesystem:*.jpeg" ]
19 }, 20 },
20 { 21 {
21 "id" : "BaseAction", 22 "id" : "BaseAction",
22 "default_title" : "Base action", 23 "default_title" : "Base action",
23 "default_icon" : "icon.png", 24 "default_icon" : "icon.png",
24 "file_filters" : [ "filesystem:*", "filesystem:*.*" ] 25 "file_filters" : [ "filesystem:*", "filesystem:*.*" ]
25 } 26 }
26 ], 27 ],
27 "permissions": [ 28 "permissions": [
28 "fileBrowserHandler", 29 "fileBrowserHandler",
29 "tabs", 30 "tabs",
30 "unlimitedStorage" 31 "unlimitedStorage"
31 ] 32 ]
32 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698