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

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

Issue 811973002: Enable lucid sleep (wake on wi-fi SSID) and add to Privacy options. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 <input id="hotword-search-enable" pref="hotword.search_enabled_2" 476 <input id="hotword-search-enable" pref="hotword.search_enabled_2"
477 metric="Options_HotwordCheckbox" type="checkbox" dialog-pref> 477 metric="Options_HotwordCheckbox" type="checkbox" dialog-pref>
478 <span> 478 <span>
479 <span i18n-values=".innerHTML:hotwordSearchEnable"></span> 479 <span i18n-values=".innerHTML:hotwordSearchEnable"></span>
480 <span id="hotword-search-setting-indicator" 480 <span id="hotword-search-setting-indicator"
481 pref="hotword.search_enabled_2" dialog-pref></span> 481 pref="hotword.search_enabled_2" dialog-pref></span>
482 </span> 482 </span>
483 </label> 483 </label>
484 </div> 484 </div>
485 </div> 485 </div>
486 <if expr="chromeos">
487 <div id="wake-on-wifi" hidden
488 class="checkbox controlled-setting-with-label">
489 <label>
490 <input id="wake-on-wifi-checkbox" type="checkbox"
491 metric="Options_WakeOnWifiSsid"
492 pref="settings.internet.wake_on_wifi_ssid">
493 <span>
494 <span i18n-content="wakeOnWifiLabel"></span>
495 <span id="wake-on-wifi-indicator"
496 class="controlled-setting-indicator"
497 pref="settings.internet.wake_on_wifi_ssid"></span>
498 </span>
499 </label>
500 </div>
501 </if>
486 </div> 502 </div>
487 </section> 503 </section>
488 <if expr="chromeos"> 504 <if expr="chromeos">
489 <!-- By default, the bluetooth section is hidden. It is only visible if a 505 <!-- By default, the bluetooth section is hidden. It is only visible if a
490 bluetooth adapter is discovered --> 506 bluetooth adapter is discovered -->
491 <section id="bluetooth-devices" hidden> 507 <section id="bluetooth-devices" hidden>
492 <h3 i18n-content="bluetooth"></h3> 508 <h3 i18n-content="bluetooth"></h3>
493 <div id="bluetooth-options-div"> 509 <div id="bluetooth-options-div">
494 <div class="checkbox"> 510 <div class="checkbox">
495 <label> 511 <label>
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
981 </button> 997 </button>
982 </div> 998 </div>
983 </section> 999 </section>
984 </div> <!-- advanced-settings-container --> 1000 </div> <!-- advanced-settings-container -->
985 </div> <!-- advanced-settings --> 1001 </div> <!-- advanced-settings -->
986 <footer> 1002 <footer>
987 <a is="action-link" id="advanced-settings-expander" 1003 <a is="action-link" id="advanced-settings-expander"
988 i18n-content="showAdvancedSettings"></a> 1004 i18n-content="showAdvancedSettings"></a>
989 </footer> 1005 </footer>
990 </div> 1006 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698