| 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"]
|
| }
|
|
|