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

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

Issue 1412523003: Adding <keygen> Content Setting (UI) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on core CL. Created 5 years, 1 month 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 803b8c06dc6f1bdd032ef5e6667a08a9778d48e7..e3846b79e9b8a957ad7dd4178a5e815119488b28 100644
--- a/chrome/browser/resources/options/content_settings.html
+++ b/chrome/browser/resources/options/content_settings.html
@@ -113,6 +113,36 @@
</div>
</div>
</section>
+ <!-- Keygen filter -->
+ <section>
+ <h3 i18n-content="keygenTabLabel"></h3>
+ <div>
+ <div class="radio controlled-setting-with-label">
+ <label>
+ <input type="radio" name="keygen" value="allow">
+ <span>
+ <span i18n-content="keygenAllow"></span>
+ <span class="controlled-setting-indicator"
+ content-setting="keygen" value="allow"></span>
+ </span>
+ </label>
+ </div>
+ <div class="radio controlled-setting-with-label">
+ <label>
+ <input type="radio" name="keygen" value="block">
+ <span>
+ <span i18n-content="keygenBlock"></span>
+ <span class="controlled-setting-indicator"
+ content-setting="keygen" value="block"></span>
+ </span>
+ </label>
+ </div>
+ <div class="settings-row">
+ <button class="exceptions-list-button" contentType="keygen"
+ i18n-content="manageExceptions"></button>
+ </div>
+ </div>
+ </section>
<!-- Handlers settings -->
<section id="handlers-section">
<h3 i18n-content="handlersTabLabel"></h3>

Powered by Google App Engine
This is Rietveld 408576698