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

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

Issue 7713033: Integrate the Spelling service to Chrome. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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="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')">
39 <div class="checkbox">
40 <label>
41 <input id="spellingServiceEnabled"
42 pref="spellcheck.use_spelling_service"
43 metric="Options_UseSpellingCheckbox" 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 <div class="checkbox"> 253 <div class="checkbox">
244 <label> 254 <label>
245 <input id="backgroundModeCheckbox" type="checkbox"> 255 <input id="backgroundModeCheckbox" type="checkbox">
246 <span i18n-content="backgroundModeCheckbox"></span> 256 <span i18n-content="backgroundModeCheckbox"></span>
247 </label> 257 </label>
248 </div> 258 </div>
249 </section> 259 </section>
250 </if> 260 </if>
251 </div> 261 </div>
252 </div> 262 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698