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

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

Issue 445503003: Update easy unlock settings UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use hard coded phone model name Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
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="automatic_settings_reset_banner.html"> 5 <include src="automatic_settings_reset_banner.html">
6 <if expr="chromeos"> 6 <if expr="chromeos">
7 <include src="secondary_user_banner.html"> 7 <include src="secondary_user_banner.html">
8 <section> 8 <section>
9 <div id="network-section-header" class="section-header"> 9 <div id="network-section-header" class="section-header">
10 <h3 i18n-content="sectionTitleInternet"></h3> 10 <h3 i18n-content="sectionTitleInternet"></h3>
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 </div> 493 </div>
494 <if expr="is_macosx"> 494 <if expr="is_macosx">
495 <div id="mac-passwords-warning" i18n-content="macPasswordsWarning" hidden> 495 <div id="mac-passwords-warning" i18n-content="macPasswordsWarning" hidden>
496 </div> 496 </div>
497 </if> 497 </if>
498 </section> 498 </section>
499 <section id="easy-unlock-section" guest-visibility="hidden" hidden> 499 <section id="easy-unlock-section" guest-visibility="hidden" hidden>
500 <h3 i18n-content="easyUnlockSectionTitle"></h3> 500 <h3 i18n-content="easyUnlockSectionTitle"></h3>
501 <!-- Options shown when the user has not set up Easy Unlock --> 501 <!-- Options shown when the user has not set up Easy Unlock -->
502 <div id='easy-unlock-setup' hidden> 502 <div id='easy-unlock-setup' hidden>
503 <button id="easy-unlock-setup-button" 503 <div class="controlled-setting-with-label">
504 i18n-content="easyUnlockSetupButton"></button> 504 <span i18n-content="easyUnlockSetupIntro"></span>
505 <div>
506 <a target="_blank" i18n-content="learnMore" 505 <a target="_blank" i18n-content="learnMore"
507 i18n-values="href:easyUnlockLearnMoreURL"></a> 506 i18n-values="href:easyUnlockLearnMoreURL"></a>
508 </div> 507 </div>
508 <button id="easy-unlock-setup-button"
509 i18n-content="easyUnlockSetupButton"></button>
509 </div> 510 </div>
510 <!-- Options shown when the user has set up Easy Unlock --> 511 <!-- Options shown when the user has set up Easy Unlock -->
511 <div id='easy-unlock-enable' hidden> 512 <div id='easy-unlock-enable' hidden>
512 <div class="checkbox"> 513 <div class="controlled-setting-with-label">
513 <span class="controlled-setting-with-label"> 514 <span i18n-content="easyUnlockDescription"></span>
514 <input id="easy-unlock-check" type="checkbox" 515 <a target="_blank" i18n-content="learnMore"
515 pref="easy_unlock.enabled" 516 i18n-values="href:easyUnlockLearnMoreURL"></a>
516 metric="EasyUnlock_Enabled">
517 <span>
518 <label for="easy-unlock-checkbox">
519 <span i18n-content="easyUnlockCheckboxLabel"></span>
520 <a target="_blank" i18n-content="learnMore"
521 i18n-values="href:easyUnlockLearnMoreURL"></a>
522 </label>
523 <span class="controlled-setting-indicator"
524 pref="easy_unlock.enabled">
525 </span>
526 </span>
527 </span>
528 </div> 517 </div>
529 <div> 518 <button id="easy-unlock-turn-off-button"
530 <a target="_blank" i18n-content="easyUnlockManagement" 519 i18n-content="easyUnlockTurnOffButton"></button>
531 i18n-values="href:easyUnlockManagementURL"></a>
532 </div>
533 </div> 520 </div>
534 </section> 521 </section>
535 <section id="web-content-section"> 522 <section id="web-content-section">
536 <h3 i18n-content="advancedSectionTitleContent"></h3> 523 <h3 i18n-content="advancedSectionTitleContent"></h3>
537 <div> 524 <div>
538 <div id="website-settings-section" class="settings-row" hidden> 525 <div id="website-settings-section" class="settings-row" hidden>
539 <button id="website-management-button" 526 <button id="website-management-button"
540 i18n-content="websitesManage"></button> 527 i18n-content="websitesManage"></button>
541 </div> 528 </div>
542 <div class="settings-row"> 529 <div class="settings-row">
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 </div> 945 </div>
959 </section> 946 </section>
960 </div> <!-- advanced-settings-container --> 947 </div> <!-- advanced-settings-container -->
961 </div> <!-- advanced-settings --> 948 </div> <!-- advanced-settings -->
962 <footer> 949 <footer>
963 <button id="advanced-settings-expander" class="link-button" 950 <button id="advanced-settings-expander" class="link-button"
964 i18n-content="showAdvancedSettings"> 951 i18n-content="showAdvancedSettings">
965 </button> 952 </button>
966 </footer> 953 </footer>
967 </div> 954 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698