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

Unified Diff: chrome/common/extensions/docs/examples/api/contentSettings/popup.js

Issue 27635002: Content settings for <audio> and <video>. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test fix. Created 6 years, 6 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/common/extensions/docs/examples/api/contentSettings/popup.js
diff --git a/chrome/common/extensions/docs/examples/api/contentSettings/popup.js b/chrome/common/extensions/docs/examples/api/contentSettings/popup.js
index ed2dfc7933e6edf5b229482de93514502b954958..c91d1b7b5a0f2d40307fc13c28d76ae594995ed3 100644
--- a/chrome/common/extensions/docs/examples/api/contentSettings/popup.js
+++ b/chrome/common/extensions/docs/examples/api/contentSettings/popup.js
@@ -25,8 +25,8 @@ document.addEventListener('DOMContentLoaded', function () {
var current = tabs[0];
incognito = current.incognito;
url = current.url;
- var types = ['cookies', 'images', 'javascript', 'plugins', 'popups',
- 'notifications'];
+ var types = ['cookies', 'images', 'javascript', 'media', 'plugins',
+ 'popups', 'notifications'];
types.forEach(function(type) {
// HACK: [type] is not recognised by the docserver's sample crawler, so
// mention an explicit

Powered by Google App Engine
This is Rietveld 408576698