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

Side by Side Diff: extensions/test/data/app_view/apitest/media_request/manifest.json

Issue 820583002: Adds support for media permission request handling on <appview> tag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn build Created 6 years 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",
3 "version": "2",
4 "manifest_version": 2, 2 "manifest_version": 2,
5 "permissions": [ 3 "name": "WebView Media request test",
6 "webview" 4 "version": "1",
7 ],
8 "app": { 5 "app": {
9 "background": { 6 "background": {
10 "scripts": ["test.js"] 7 "scripts": ["test.js"]
11 } 8 }
12 }, 9 },
10 "permissions": [
11 "webview",
12 "audioCapture",
13 "videoCapture"
14 ],
13 "webview": { 15 "webview": {
14 "partitions": [ 16 "partitions": [
15 { 17 {
16 "name": "foobar", 18 "name": "media",
17 "accessible_resources": [] 19 "accessible_resources": ["guest.html"]
18 } 20 }
19 ] 21 ]
20 } 22 }
21 } 23 }
24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698