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

Side by Side Diff: chrome/test/data/extensions/platform_apps/launch_wrong_type/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
« no previous file with comments | « chrome/test/data/extensions/platform_apps/launch_wrong_intent/test.js ('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 "name": "Platform App Launch Test", 2 "name": "Platform App Launch Test",
3 "version": "1", 3 "version": "1",
4 "intents": { 4 "file_handlers": {
5 "http://webintents.org/view": { 5 "image": {
6 "type": [ 6 "types": [
7 "image/*" 7 "image/*"
8 ], 8 ],
9 "title": "Test editor" 9 "title": "Test editor"
10 } 10 }
11 }, 11 },
12 "app": { 12 "app": {
13 "background": { 13 "background": {
14 "scripts": ["test.js"] 14 "scripts": ["test.js"]
15 } 15 }
16 } 16 }
17 } 17 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/platform_apps/launch_wrong_intent/test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698