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

Unified Diff: chrome/test/data/extensions/api_test/content_settings/standard/test.js

Issue 880223002: Expose microphone content setting to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed the term "main-frame" from the description. ( and rebase over 883983003 which did that elsewhere) Created 5 years, 11 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/content_settings/standard/test.js
diff --git a/chrome/test/data/extensions/api_test/content_settings/standard/test.js b/chrome/test/data/extensions/api_test/content_settings/standard/test.js
index 35835d244e84bea5064c67920d7864c54cbca757..5bf6953a44647e151b8495abac7712aa76b5fb53 100644
--- a/chrome/test/data/extensions/api_test/content_settings/standard/test.js
+++ b/chrome/test/data/extensions/api_test/content_settings/standard/test.js
@@ -15,6 +15,7 @@ var default_content_settings = {
"location": "ask",
"notifications": "ask",
"mouselock": "ask",
+ "mediaStreamMic": "ask",
};
var settings = {
@@ -25,7 +26,8 @@ var settings = {
"popups": "allow",
"location": "block",
"notifications": "block",
- "mouselock": "block"
+ "mouselock": "block",
+ "mediaStreamMic": "block"
};
Object.prototype.forEach = function(f) {

Powered by Google App Engine
This is Rietveld 408576698