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

Side by Side Diff: chrome/test/data/extensions/platform_apps/launch_reply/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 Launch/Reply Test", 2 "name": "Platform App Launch/Reply 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 "app": { 12 "app": {
13 "background": { 13 "background": {
14 "scripts": ["test.js"] 14 "scripts": ["test.js"]
15 } 15 }
16 } 16 }
17 } 17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698