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

Unified Diff: chrome/browser/resources/options/content_settings.html

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/browser/resources/options/content_settings.html
diff --git a/chrome/browser/resources/options/content_settings.html b/chrome/browser/resources/options/content_settings.html
index d96f4f8c096210a93af2a64b9f29101b046789c8..05bd1e322beab81c96627788c75e5d8033d88c84 100644
--- a/chrome/browser/resources/options/content_settings.html
+++ b/chrome/browser/resources/options/content_settings.html
@@ -107,6 +107,38 @@
</div>
</div>
</section>
+ <!-- Media filter -->
+ <section>
+ <h3 i18n-content="media_tab_label"></h3>
+ <div>
+ <div class="radio">
+ <span class="controlled-setting-with-label">
+ <input id="media-allow" type="radio" name="media" value="allow">
+ <span>
+ <label for="media-allow" i18n-content="media_allow"></label>
+ <span class="controlled-setting-indicator"
+ content-setting="media" value="allow">
+ </span>
+ </span>
+ </span>
+ </div>
+ <div class="radio">
+ <span class="controlled-setting-with-label">
+ <input id="media-block" type="radio" name="media" value="block">
+ <span>
+ <label for="media-block" i18n-content="media_block"></label>
+ <span class="controlled-setting-indicator"
+ content-setting="media" value="block">
+ </span>
+ </span>
+ </span>
+ </div>
+ <div class="settings-row">
+ <button class="exceptions-list-button" contentType="media"
+ i18n-content="manageExceptions"></button>
+ </div>
+ </div>
+ </section>
<!-- JavaScript filter -->
<section>
<h3 i18n-content="javascript_tab_label"></h3>

Powered by Google App Engine
This is Rietveld 408576698