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

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

Issue 8586043: Adds an option item that enables/disables the Spelling service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/ui/webui/options/advanced_options_handler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="advancedPage" class="page" hidden> 1 <div id="advancedPage" class="page" hidden>
2 <h1 i18n-content="advancedPage"></h1> 2 <h1 i18n-content="advancedPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <section> 4 <section>
5 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 5 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
6 <div> 6 <div>
7 <div class="section-group"> 7 <div class="section-group">
8 <button id="privacyContentSettingsButton" 8 <button id="privacyContentSettingsButton"
9 i18n-content="privacyContentSettingsButton"></button> 9 i18n-content="privacyContentSettingsButton"></button>
10 <button id="privacyClearDataButton" 10 <button id="privacyClearDataButton"
(...skipping 17 matching lines...) Expand all
28 <span i18n-content="linkDoctorPref"></span> 28 <span i18n-content="linkDoctorPref"></span>
29 </label> 29 </label>
30 </div> 30 </div>
31 <div class="checkbox"> 31 <div class="checkbox">
32 <label> 32 <label>
33 <input id="searchSuggestEnabled" pref="search.suggest_enabled" 33 <input id="searchSuggestEnabled" pref="search.suggest_enabled"
34 metric="Options_UseSuggestCheckbox" type="checkbox"> 34 metric="Options_UseSuggestCheckbox" type="checkbox">
35 <span i18n-content="suggestPref"></span> 35 <span i18n-content="suggestPref"></span>
36 </label> 36 </label>
37 </div> 37 </div>
38 <if expr="pp_ifdef('_google_chrome') and os == 'win32'">
39 <div class="checkbox">
40 <label>
41 <input id="spellingServiceEnabled"
42 pref="spellcheck.use_spelling_service"
43 metric="Options_UseSpellingServiceCheckbox" type="checkbox">
44 <span i18n-content="spellingPref"></span>
45 </label>
46 </div>
47 </if>
38 <div class="checkbox"> 48 <div class="checkbox">
39 <label> 49 <label>
40 <input id="dnsPrefetchingEnabled" pref="dns_prefetching.enabled" 50 <input id="dnsPrefetchingEnabled" pref="dns_prefetching.enabled"
41 metric="Options_DnsPrefetchCheckbox" type="checkbox"> 51 metric="Options_DnsPrefetchCheckbox" type="checkbox">
42 <span i18n-content="networkPredictionEnabledDescription"></span> 52 <span i18n-content="networkPredictionEnabledDescription"></span>
43 </label> 53 </label>
44 </div> 54 </div>
45 <div class="checkbox"> 55 <div class="checkbox">
46 <label> 56 <label>
47 <input id="safeBrowsingEnabled" pref="safebrowsing.enabled" 57 <input id="safeBrowsingEnabled" pref="safebrowsing.enabled"
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 <div class="checkbox"> 245 <div class="checkbox">
236 <label> 246 <label>
237 <input id="backgroundModeCheckbox" type="checkbox"> 247 <input id="backgroundModeCheckbox" type="checkbox">
238 <span i18n-content="backgroundModeCheckbox"></span> 248 <span i18n-content="backgroundModeCheckbox"></span>
239 </label> 249 </label>
240 </div> 250 </div>
241 </section> 251 </section>
242 </if> 252 </if>
243 </div> 253 </div>
244 </div> 254 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/options/advanced_options_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698