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

Side by Side Diff: chrome/test/data/extensions/platform_apps/get_display_path/manifest.json

Issue 11360026: Add the "file_handlers" manifest key for platform apps to replace "intents". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 8 years, 1 month 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 "name": "Platform App fileSystem.getDisplayPath test", 2 "name": "Platform App fileSystem.getDisplayPath test",
3 "version": "1", 3 "version": "1",
4 "intents": { 4 "file_handlers": {
5 "http://webintents.org/view": { 5 "text": {
6 "type": [ 6 "types": [
7 "text/*" 7 "text/*"
8 ], 8 ],
9 "title": "Test editor" 9 "title": "Test editor"
10 } 10 }
11 }, 11 },
12 "permissions": [ 12 "permissions": [
13 { 13 {
14 "fileSystem": [] 14 "fileSystem": []
15 } 15 }
16 ], 16 ],
17 "app": { 17 "app": {
18 "background": { 18 "background": {
19 "scripts": ["test.js"] 19 "scripts": ["test.js"]
20 } 20 }
21 } 21 }
22 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698