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

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

Issue 8549011: Content settings UI for mouse lock (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Strings from Brian used Created 9 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 f0fed816b742910a4082af4ada8c489b939adedd..6d735f3a0be5428ede8b2f9adf9186ab4cae7874 100644
--- a/chrome/browser/resources/options/content_settings.html
+++ b/chrome/browser/resources/options/content_settings.html
@@ -219,6 +219,32 @@
i18n-content="manage_exceptions"></button>
</div>
</section>
+ <!-- Mouse Lock filter -->
+ <section>
+ <h3 i18n-content="mouselock_tab_label"></h3>
+ <div>
+ <div class="radio">
+ <label>
+ <input type="radio" name="mouselock" value="allow">
+ <span i18n-content="mouselock_allow"></span>
+ </label>
+ </div>
+ <div class="radio">
+ <label>
+ <input type="radio" name="mouselock" value="ask">
+ <span i18n-content="mouselock_ask"></span>
+ </label>
+ </div>
+ <div class="radio">
+ <label>
+ <input type="radio" name="mouselock" value="block">
+ <span i18n-content="mouselock_block"></span>
+ </label>
+ </div>
+ <button class="exceptions-list-button" contentType="mouselock"
+ i18n-content="manage_exceptions"></button>
+ </div>
+ </section>
<!-- Intent registration filter tab contents -->
<if expr="pp_ifdef('enable_web_intents')">
<section id="intents-section">

Powered by Google App Engine
This is Rietveld 408576698