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

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

Issue 797183005: Add a mimeHandler extension API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@streams-lifetime
Patch Set: rebase Created 5 years, 11 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
OLDNEW
1 { 1 {
2 "name": "Test MIMEHandlerView", 2 "name": "Test MIMEHandlerView",
3 "version": "1", 3 "version": "1",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJ8Hl8K6R+n/hrPsN1ienxRU3GbL00wF HLJNML45MHwT+3PstgWf4EgC3wbyyTXFtbvJC+Hn14Hyltfhsa+cSraldNHeL+rl+FL04kE4uYHq8YhO YEtzUfg380+o7XV9oESKu9oLTeG9QuQCjmlp3MUqC9wm7ICjxR9flODClOkQIDAQAB", 5 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJ8Hl8K6R+n/hrPsN1ienxRU3GbL00wF HLJNML45MHwT+3PstgWf4EgC3wbyyTXFtbvJC+Hn14Hyltfhsa+cSraldNHeL+rl+FL04kE4uYHq8YhO YEtzUfg380+o7XV9oESKu9oLTeG9QuQCjmlp3MUqC9wm7ICjxR9flODClOkQIDAQAB",
6 "mime_types": [ 6 "mime_types": [
7 "text/csv" 7 "text/csv"
8 ], 8 ],
9 "web_accessible_resources": [ 9 "web_accessible_resources": [
10 "test_embedded.html",
10 "test_postmessage.html", 11 "test_postmessage.html",
11 "test_postmessage.js", 12 "test_postmessage.js",
12 "test.csv" 13 "test.csv",
14 "testAbort.csv",
15 "testBasic.csv",
16 "testEmbedded.csv"
13 ], 17 ],
14 "mime_types_handler": "embedded.html", 18 "mime_types_handler": "embedded.html",
15 "permissions": [ 19 "permissions": [
16 "streamsPrivate" 20 "streamsPrivate"
17 ] 21 ]
18 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698