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

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: fix 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 <include src="automatic_settings_reset_banner.html"> 6 <include src="automatic_settings_reset_banner.html">
7 <if expr="not pp_ifdef('chromeos')"> 7 <if expr="not pp_ifdef('chromeos')">
8 <include src="sync_section.html"> 8 <include src="sync_section.html">
9 </if> 9 </if>
10 <if expr="pp_ifdef('chromeos')"> 10 <if expr="pp_ifdef('chromeos')">
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 </label> 345 </label>
346 <a target="_blank" i18n-content="learnMore" 346 <a target="_blank" i18n-content="learnMore"
347 i18n-values="href:contentProtectionAttestationLearnMoreURL"> 347 i18n-values="href:contentProtectionAttestationLearnMoreURL">
348 </a> 348 </a>
349 <span class="controlled-setting-indicator" 349 <span class="controlled-setting-indicator"
350 pref="cros.device.attestation_for_content_protection_enabled"> 350 pref="cros.device.attestation_for_content_protection_enabled">
351 </span> 351 </span>
352 </span> 352 </span>
353 </span> 353 </span>
354 </div> 354 </div>
355 <div id="hotword-app-list" hidden>
356 <div class="checkbox">
357 <span class="controlled-setting-with-label">
358 <input id="hotword-app-list-enable" pref="hotword.app_list_enabled"
359 type="checkbox">
360 <span>
361 <label for="hotword-app-list-enable"
Evan Stade 2014/02/11 18:54:12 even though there are lots of crappy examples in t
Jun Mukai 2014/02/11 19:27:38 Done.
Evan Stade 2014/02/12 23:01:49 this is not done. It should look like this: <lab
Jun Mukai 2014/02/13 00:08:30 Fixed. Sorry for my poor understanding.
362 i18n-content="enableHotwordAppList">
363 </label>
364 </span>
365 </div>
366 </div>
355 </if> 367 </if>
356 <div id ="hotword-search" hidden> 368 <div id="hotword-search" hidden>
357 <div class="checkbox"> 369 <div class="checkbox">
358 <span class="controlled-setting-with-label"> 370 <span class="controlled-setting-with-label">
359 <input id="hotword-search-enable" pref="hotword.search_enabled" 371 <input id="hotword-search-enable" pref="hotword.search_enabled"
360 type="checkbox" dialog-pref> 372 type="checkbox" dialog-pref>
361 <span> 373 <span>
362 <label for="hotword-search-enable" 374 <label for="hotword-search-enable"
363 i18n-values=".innerHTML:hotwordSearchEnable"> 375 i18n-values=".innerHTML:hotwordSearchEnable">
364 </label> 376 </label>
365 <span class="controlled-setting-indicator" 377 <span class="controlled-setting-indicator"
366 pref="hotword.search_enabled" dialog-pref> 378 pref="hotword.search_enabled" dialog-pref>
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 </div> 896 </div>
885 </section> 897 </section>
886 </div> <!-- advanced-settings-container --> 898 </div> <!-- advanced-settings-container -->
887 </div> <!-- advanced-settings --> 899 </div> <!-- advanced-settings -->
888 <footer> 900 <footer>
889 <button id="advanced-settings-expander" class="link-button" 901 <button id="advanced-settings-expander" class="link-button"
890 i18n-content="showAdvancedSettings"> 902 i18n-content="showAdvancedSettings">
891 </button> 903 </button>
892 </footer> 904 </footer>
893 </div> 905 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698