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

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, 3 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 19 matching lines...) Expand all
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 <div class="checkbox"> 38 <div class="checkbox">
39 <label> 39 <label>
40 <input id="spellingServiceEnabled"
41 pref="spellcheck.use_spelling_service"
42 metric="Options_UseSpellingCheckbox" type="checkbox">
43 <span i18n-content="spellingPref"></span>
44 </label>
45 </div>
46 <div class="checkbox">
47 <label>
40 <input id="dnsPrefetchingEnabled" pref="dns_prefetching.enabled" 48 <input id="dnsPrefetchingEnabled" pref="dns_prefetching.enabled"
41 metric="Options_DnsPrefetchCheckbox" type="checkbox"> 49 metric="Options_DnsPrefetchCheckbox" type="checkbox">
42 <span i18n-content="networkPredictionEnabledDescription"></span> 50 <span i18n-content="networkPredictionEnabledDescription"></span>
43 </label> 51 </label>
44 </div> 52 </div>
45 <div class="checkbox"> 53 <div class="checkbox">
46 <label> 54 <label>
47 <input id="safeBrowsingEnabled" pref="safebrowsing.enabled" 55 <input id="safeBrowsingEnabled" pref="safebrowsing.enabled"
48 metric="Options_SafeBrowsingCheckbox" type="checkbox"> 56 metric="Options_SafeBrowsingCheckbox" type="checkbox">
49 <span i18n-content="safeBrowsingEnableProtection"></span> 57 <span i18n-content="safeBrowsingEnableProtection"></span>
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 <div class="checkbox"> 239 <div class="checkbox">
232 <label> 240 <label>
233 <input id="backgroundModeCheckbox" type="checkbox"> 241 <input id="backgroundModeCheckbox" type="checkbox">
234 <span i18n-content="backgroundModeCheckbox"></span> 242 <span i18n-content="backgroundModeCheckbox"></span>
235 </label> 243 </label>
236 </div> 244 </div>
237 </section> 245 </section>
238 </if> 246 </if>
239 </div> 247 </div>
240 </div> 248 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698