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

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: Renamed to 'microphone'. 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..228507c9f3e4ef7c930de0d0b67a6e895b2c47d2 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",
+ "microphone": "ask",
};
var settings = {
@@ -25,7 +26,8 @@ var settings = {
"popups": "allow",
"location": "block",
"notifications": "block",
- "mouselock": "block"
+ "mouselock": "block",
+ "microphone": "block"
};
Object.prototype.forEach = function(f) {

Powered by Google App Engine
This is Rietveld 408576698