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

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

Issue 197313007: Add Easy Unlock options to chrome://settings behind a flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 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
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/browser_options.html
diff --git a/chrome/browser/resources/options/browser_options.html b/chrome/browser/resources/options/browser_options.html
index 43a7b4d15ef15d9c88040151f022281158222b31..c3a67b384c46a75cb518c575631cdc75beb5f3a6 100644
--- a/chrome/browser/resources/options/browser_options.html
+++ b/chrome/browser/resources/options/browser_options.html
@@ -458,6 +458,42 @@
</div>
</if>
</section>
+ <section id="easy-unlock-section" guest-visibility="hidden" hidden>
+ <h3 i18n-content="easyUnlockSectionTitle"></h3>
+ <!-- Options shown when the user has not set up Easy Unlock -->
+ <div id='easy-unlock-setup' hidden>
+ <button id="easy-unlock-setup-button"
+ i18n-content="easyUnlockSetupButton"></button>
+ <div>
+ <a target="_blank" i18n-content="learnMore"
+ i18n-values="href:easyUnlockLearnMoreURL"></a>
+ </div>
+ </div>
+ <!-- Options shown when the user has set up Easy Unlock -->
+ <div id='easy-unlock-enable' hidden>
+ <div class="checkbox">
+ <span class="controlled-setting-with-label">
+ <input id="easy-unlock-check" type="checkbox"
+ pref="easy_unlock.enabled"
+ metric="EasyUnlock_Enabled">
+ <span>
+ <label for="easy-unlock-checkbox">
+ <span i18n-content="easyUnlockCheckboxLabel"></span>
+ <a target="_blank" i18n-content="learnMore"
+ i18n-values="href:easyUnlockLearnMoreURL"></a>
+ </label>
+ <span class="controlled-setting-indicator"
+ pref="easy_unlock.enabled">
+ </span>
+ </span>
+ </span>
+ </div>
+ <div>
+ <a target="_blank" i18n-content="easyUnlockManagement"
+ i18n-values="href:easyUnlockManagementURL"></a>
+ </div>
+ </div>
+ </section>
<section id="web-content-section">
<h3 i18n-content="advancedSectionTitleContent"></h3>
<div>
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698