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

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

Issue 12223086: Update app runtime custom bindings to handle no WebIntents launch data. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More stuff removed Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80 Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cW eRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==",
3 "name": "ChromeOS Web Intent handler extension",
4 "version": "0.1",
5 "manifest_version": 2,
6 "description": "Tests of chrome.fileSystem.* methods for handling Web Intents" ,
7 "app": {
8 "background": {
9 "scripts": ["background.js"]
10 }
11 },
12 "intents": {
13 "http://webintents.org/view": [{
14 "title": "View xul action",
15 "type": ["application/vnd.mozilla.xul+xml"]
16 }]
17 },
18 "permissions": [
19 "experimental",
20 "fileSystem",
21 "unlimitedStorage"
22 ]
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698