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

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

Issue 1383483007: Add scheme exceptions for isSecureContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Nits and fixes Created 5 years, 2 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 // Extension ID: knldjmfmopnpolahpmmgbagdohdnhkik 2 // Extension ID: knldjmfmopnpolahpmmgbagdohdnhkik
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDcBHwzDvyBQ6bDppkIs9MP4ksKqCMyXQ /A52JivHZKh4YO/9vJsT3oaYhSpDCE9RPocOEQvwsHsFReW2nUEc6OLLyoCFFxIb7KkLGsmfakkut/fF dNJYh0xOTbSN8YvLWcqph09XAY2Y/f0AL7vfO1cuCqtkMt8hFrBGWxDdf9CQIDAQAB", 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDcBHwzDvyBQ6bDppkIs9MP4ksKqCMyXQ /A52JivHZKh4YO/9vJsT3oaYhSpDCE9RPocOEQvwsHsFReW2nUEc6OLLyoCFFxIb7KkLGsmfakkut/fF dNJYh0xOTbSN8YvLWcqph09XAY2Y/f0AL7vfO1cuCqtkMt8hFrBGWxDdf9CQIDAQAB",
4 "version": "1.0.0.0", 4 "version": "1.0.0.0",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "name": "Desktop Capture API test", 6 "name": "getUserMedia Use in Extension Resource",
7 "description": "Test desktop capture API", 7 "description": "Test getUserMedia use in a web accessible resource nested in a n insecure context.",
8 "background": { 8 "background": {
9 "scripts": ["test.js"] 9 "scripts": ["test.js"]
10 }, 10 },
11 "content_scripts": [{
12 "matches": ["http://a.com/*"],
13 "js": ["content-script.js"]
14 }],
15 "web_accessible_resources": ["iframe-content.html", "iframe.js"],
robwu 2015/10/08 21:25:18 iframe.js does not need to be listed, only the fra
jww 2015/10/09 21:39:26 Done.
11 "permissions": [ 16 "permissions": [
12 "desktopCapture" 17 "desktopCapture",
Devlin 2015/10/08 16:48:32 Don't need this, right?
jww 2015/10/09 21:39:26 Done.
18 "tabs", "http://a.com/*"
robwu 2015/10/08 21:25:18 The extension does not need any permissions. - chr
jww 2015/10/09 21:39:26 Yup, that was from an old version of the test. Nic
13 ] 19 ]
14 } 20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698