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

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

Issue 158143002: Fine tuned availability of hotword plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 6 years, 10 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="reset_profile_settings_banner.html"> 5 <include src="reset_profile_settings_banner.html">
6 <if expr="not pp_ifdef('chromeos')"> 6 <if expr="not pp_ifdef('chromeos')">
7 <include src="sync_section.html"> 7 <include src="sync_section.html">
8 </if> 8 </if>
9 <if expr="pp_ifdef('chromeos')"> 9 <if expr="pp_ifdef('chromeos')">
10 <section> 10 <section>
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 </label> 344 </label>
345 <a target="_blank" i18n-content="learnMore" 345 <a target="_blank" i18n-content="learnMore"
346 i18n-values="href:contentProtectionAttestationLearnMoreURL"> 346 i18n-values="href:contentProtectionAttestationLearnMoreURL">
347 </a> 347 </a>
348 <span class="controlled-setting-indicator" 348 <span class="controlled-setting-indicator"
349 pref="cros.device.attestation_for_content_protection_enabled"> 349 pref="cros.device.attestation_for_content_protection_enabled">
350 </span> 350 </span>
351 </span> 351 </span>
352 </span> 352 </span>
353 </div> 353 </div>
354 <div id="hotword-app-list" hidden>
355 <div class="checkbox">
356 <span class="controlled-setting-with-label">
357 <input id="hotword-app-list-enable" pref="hotword.app_list_enabled"
358 type="checkbox">
359 <span>
360 <label for="hotword-app-list-enable"
361 i18n-content="enableHotwordAppList">
362 </label>
363 </span>
364 </div>
365 </div>
354 </if> 366 </if>
355 <div id ="hotword-search" hidden> 367 <div id="hotword-search" hidden>
356 <div class="checkbox"> 368 <div class="checkbox">
357 <span class="controlled-setting-with-label"> 369 <span class="controlled-setting-with-label">
358 <input id="hotword-search-enable" pref="hotword.search_enabled" 370 <input id="hotword-search-enable" pref="hotword.search_enabled"
359 type="checkbox" dialog-pref> 371 type="checkbox" dialog-pref>
360 <span> 372 <span>
361 <label for="hotword-search-enable" 373 <label for="hotword-search-enable"
362 i18n-values=".innerHTML:hotwordSearchEnable"> 374 i18n-values=".innerHTML:hotwordSearchEnable">
363 </label> 375 </label>
364 <span class="controlled-setting-indicator" 376 <span class="controlled-setting-indicator"
365 pref="hotword.search_enabled" dialog-pref> 377 pref="hotword.search_enabled" dialog-pref>
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 </div> 895 </div>
884 </section> 896 </section>
885 </div> <!-- advanced-settings-container --> 897 </div> <!-- advanced-settings-container -->
886 </div> <!-- advanced-settings --> 898 </div> <!-- advanced-settings -->
887 <footer> 899 <footer>
888 <button id="advanced-settings-expander" class="link-button" 900 <button id="advanced-settings-expander" class="link-button"
889 i18n-content="showAdvancedSettings"> 901 i18n-content="showAdvancedSettings">
890 </button> 902 </button>
891 </footer> 903 </footer>
892 </div> 904 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698