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

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

Issue 136693013: [Hotword] Remove unneeded preferences. Cleaning up look of settings. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: removing a few mroe instances of prefs Created 6 years, 11 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
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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 </label> 150 </label>
151 <span class="controlled-setting-indicator" 151 <span class="controlled-setting-indicator"
152 pref="hotword.search_enabled"> 152 pref="hotword.search_enabled">
153 </span> 153 </span>
154 </span> 154 </span>
155 </span> 155 </span>
156 <div id="hotword-search-description" class="hotword-settings"> 156 <div id="hotword-search-description" class="hotword-settings">
157 <span i18n-content="hotwordSearchDescription"></span> 157 <span i18n-content="hotwordSearchDescription"></span>
158 </div> 158 </div>
159 </div> 159 </div>
160 <div id="hotword-settings-section" class="hotword-settings" hidden>
161 <div id="hotword-settings-section-container">
162 <div class="checkbox">
163 <span class="controlled-setting-with-label">
164 <input id="hotword-search-timeout"
165 pref="hotword.search_timeout_enabled" type="checkbox">
166 <span>
167 <label for="hotword-search-timeout"
168 i18n-content="hotwordSearchTimeout">
169 </label>
170 <span class="controlled-setting-indicator"
171 pref="hotword.search_timeout_enabled">
172 </span>
173 </span>
174 </span>
175 <div id="hotword-search-timeout-description"
176 class="hotword-settings">
177 <span i18n-content="hotwordSearchTimeoutDescription"></span>
178 </div>
179 </div>
180 <div class="checkbox">
181 <span class="controlled-setting-with-label">
182 <input id="hotword-search-incognito-enable"
183 pref="hotword.incognito_search_enabled" type="checkbox">
184 <span>
185 <label for="hotword-search-incognito-enable"
186 i18n-content="hotwordSearchIncognito">
187 </label>
188 <span class="controlled-setting-indicator"
189 pref="hotword.incognito_search_enabled">
190 </span>
191 </span>
192 </span>
193 </div>
194 </div>
195 </div>
196 </div> 160 </div>
197 </section> 161 </section>
198 <section id="sync-users-section" guest-visibility="hidden"> 162 <section id="sync-users-section" guest-visibility="hidden">
199 <h3 i18n-content="sectionTitleUsers"></h3> 163 <h3 i18n-content="sectionTitleUsers"></h3>
200 <if expr="pp_ifdef('chromeos')"> 164 <if expr="pp_ifdef('chromeos')">
201 <include src="sync_section.html"> 165 <include src="sync_section.html">
202 </if> 166 </if>
203 <div id="profiles-section" hidden> 167 <div id="profiles-section" hidden>
204 <list id="profiles-list" class="settings-list" hidden></list> 168 <list id="profiles-list" class="settings-list" hidden></list>
205 <div id="profiles-single-message" class="settings-row" 169 <div id="profiles-single-message" class="settings-row"
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 </div> 877 </div>
914 </section> 878 </section>
915 </div> <!-- advanced-settings-container --> 879 </div> <!-- advanced-settings-container -->
916 </div> <!-- advanced-settings --> 880 </div> <!-- advanced-settings -->
917 <footer> 881 <footer>
918 <button id="advanced-settings-expander" class="link-button" 882 <button id="advanced-settings-expander" class="link-button"
919 i18n-content="showAdvancedSettings"> 883 i18n-content="showAdvancedSettings">
920 </button> 884 </button>
921 </footer> 885 </footer>
922 </div> 886 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698