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

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

Issue 14790018: ChromeOS: Use file extensions in Files app to decide which apps to use. (Closed) Base URL: http://git.chromium.org/chromium/src.git@file-handler-extensions2
Patch Set: Created 7 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
« no previous file with comments | « chrome/browser/extensions/api/file_handlers/app_file_handler_util.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80 Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cW eRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==", 2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80 Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cW eRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==",
3 "name": "ChromeOS Web Intent handler extension", 3 "name": "ChromeOS File handler extension",
4 "version": "0.1", 4 "version": "0.1",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "description": "Tests of chrome.fileSystem.* methods for handling Web Intents" , 6 "description": "Tests of chrome.fileSystem.* methods for handling files",
7 "app": { 7 "app": {
8 "background": { 8 "background": {
9 "scripts": ["background.js"] 9 "scripts": ["background.js"]
10 } 10 }
11 }, 11 },
12 "file_handlers": { 12 "file_handlers": {
13 "xulAction": { 13 "xulAction": {
14 "types": ["application/vnd.mozilla.xul+xml"], 14 "types": ["application/vnd.mozilla.xul+xml"],
15 "title": "xul action handler" 15 "title": "xul action handler"
16 }, 16 },
17 "tiffAction": { 17 "tiffAction": {
18 "types": ["image/tiff"], 18 "extensions": ["tiff"],
19 "title": "tiff action handler" 19 "title": "tiff action handler"
20 } 20 }
21 }, 21 },
22 "permissions": [ 22 "permissions": [
23 "fileSystem", 23 "fileSystem",
24 "unlimitedStorage" 24 "unlimitedStorage"
25 ] 25 ]
26 } 26 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/file_handlers/app_file_handler_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698