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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/webrtc_from_web_accessible_resource/manifest.json
diff --git a/chrome/test/data/extensions/api_test/native_messaging/manifest.json b/chrome/test/data/extensions/api_test/webrtc_from_web_accessible_resource/manifest.json
similarity index 52%
copy from chrome/test/data/extensions/api_test/native_messaging/manifest.json
copy to chrome/test/data/extensions/api_test/webrtc_from_web_accessible_resource/manifest.json
index f7d8507fb7170948c04a33b3e6d5ee46cb5c3222..d01051eae21b411dfd736db263d9c820faa0c313 100644
--- a/chrome/test/data/extensions/api_test/native_messaging/manifest.json
+++ b/chrome/test/data/extensions/api_test/webrtc_from_web_accessible_resource/manifest.json
@@ -3,12 +3,11 @@
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDcBHwzDvyBQ6bDppkIs9MP4ksKqCMyXQ/A52JivHZKh4YO/9vJsT3oaYhSpDCE9RPocOEQvwsHsFReW2nUEc6OLLyoCFFxIb7KkLGsmfakkut/fFdNJYh0xOTbSN8YvLWcqph09XAY2Y/f0AL7vfO1cuCqtkMt8hFrBGWxDdf9CQIDAQAB",
"version": "1.0.0.0",
"manifest_version": 2,
- "name": "native messaging test",
- "description": "Test the basic functionality of passing native messages.",
- "background": {
- "scripts": ["test.js"]
- },
- "permissions": [
- "nativeMessaging"
- ]
+ "name": "getUserMedia Use in Extension Resource",
+ "description": "Test getUserMedia use in a web accessible resource nested in an insecure context.",
+ "content_scripts": [{
+ "matches": ["http://a.com/*"],
+ "js": ["content_script.js"]
+ }],
+ "web_accessible_resources": ["iframe_content.html"]
}

Powered by Google App Engine
This is Rietveld 408576698