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

Side by Side Diff: chrome/browser/resources/options/browser_options.html

Issue 696583002: [Smart Lock] Add a setting to require close proximity in order for unlocking to work. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
1 <div id="settings" class="page" hidden> 1 <div id="settings" class="page" hidden>
2 <header> 2 <header>
3 <h1 i18n-content="settingsTitle"></h1> 3 <h1 i18n-content="settingsTitle"></h1>
4 </header> 4 </header>
5 <include src="reset_profile_settings_banner.html"> 5 <include src="reset_profile_settings_banner.html">
6 <include src="automatic_settings_reset_banner.html"> 6 <include src="automatic_settings_reset_banner.html">
7 <if expr="chromeos"> 7 <if expr="chromeos">
8 <include src="secondary_user_banner.html"> 8 <include src="secondary_user_banner.html">
9 <section> 9 <section>
10 <div id="network-section-header" class="section-header"> 10 <div id="network-section-header" class="section-header">
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 i18n-values="href:easyUnlockLearnMoreURL"></a> 539 i18n-values="href:easyUnlockLearnMoreURL"></a>
540 </div> 540 </div>
541 <button id="easy-unlock-setup-button" 541 <button id="easy-unlock-setup-button"
542 i18n-content="easyUnlockSetupButton"></button> 542 i18n-content="easyUnlockSetupButton"></button>
543 </div> 543 </div>
544 <!-- Options shown when the user has set up Easy Unlock --> 544 <!-- Options shown when the user has set up Easy Unlock -->
545 <div id='easy-unlock-enable' hidden> 545 <div id='easy-unlock-enable' hidden>
546 <div class="settings-row"> 546 <div class="settings-row">
547 <span i18n-content="easyUnlockDescription"></span> 547 <span i18n-content="easyUnlockDescription"></span>
548 <a target="_blank" i18n-content="learnMore" 548 <a target="_blank" i18n-content="learnMore"
549 i18n-values="href:easyUnlockLearnMoreURL"></a> 549 i18n-values="href:easyUnlockLearnMoreURL"></a>
550 <div class="checkbox">
551 <label>
552 <input type="checkbox"
553 metric="Options_EasyUnlockRequireProximity"
554 pref="easy_unlock.proximity_required">
555 <span i18n-content="easyUnlockRequireProximityLabel"></span>
556 </label>
557 </div>
550 </div> 558 </div>
551 <button id="easy-unlock-turn-off-button" 559 <button id="easy-unlock-turn-off-button"
552 i18n-content="easyUnlockTurnOffButton"></button> 560 i18n-content="easyUnlockTurnOffButton"></button>
553 </div> 561 </div>
554 </section> 562 </section>
555 <section id="web-content-section"> 563 <section id="web-content-section">
556 <h3 i18n-content="advancedSectionTitleContent"></h3> 564 <h3 i18n-content="advancedSectionTitleContent"></h3>
557 <div> 565 <div>
558 <div id="website-settings-section" class="settings-row" hidden> 566 <div id="website-settings-section" class="settings-row" hidden>
559 <button id="website-management-button" 567 <button id="website-management-button"
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 </button> 961 </button>
954 </div> 962 </div>
955 </section> 963 </section>
956 </div> <!-- advanced-settings-container --> 964 </div> <!-- advanced-settings-container -->
957 </div> <!-- advanced-settings --> 965 </div> <!-- advanced-settings -->
958 <footer> 966 <footer>
959 <a is="action-link" id="advanced-settings-expander" 967 <a is="action-link" id="advanced-settings-expander"
960 i18n-content="showAdvancedSettings"></a> 968 i18n-content="showAdvancedSettings"></a>
961 </footer> 969 </footer>
962 </div> 970 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698