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

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: Update comment 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": "native messaging test", 6 "name": "getUserMedia Use in Extension Resource",
7 "description": "Test the basic functionality of passing native messages.", 7 "description": "Test getUserMedia use in a web accessible resource nested in a n insecure context.",
8 "background": { 8 "content_scripts": [{
9 "scripts": ["test.js"] 9 "matches": ["http://a.com/*"],
10 }, 10 "js": ["content_script.js"]
11 "permissions": [ 11 }],
12 "nativeMessaging" 12 "web_accessible_resources": ["iframe_content.html"]
13 ]
14 } 13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698