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

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

Issue 9564004: Enable the option item that uses the Spelling service on Chrome OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/resources/options2/browser_options.html » ('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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 <span i18n-content="networkPredictionEnabledDescription"></span> 42 <span i18n-content="networkPredictionEnabledDescription"></span>
43 </label> 43 </label>
44 </div> 44 </div>
45 <div class="checkbox"> 45 <div class="checkbox">
46 <label> 46 <label>
47 <input id="safeBrowsingEnabled" pref="safebrowsing.enabled" 47 <input id="safeBrowsingEnabled" pref="safebrowsing.enabled"
48 metric="Options_SafeBrowsingCheckbox" type="checkbox"> 48 metric="Options_SafeBrowsingCheckbox" type="checkbox">
49 <span i18n-content="safeBrowsingEnableProtection"></span> 49 <span i18n-content="safeBrowsingEnableProtection"></span>
50 </label> 50 </label>
51 </div> 51 </div>
52 <if expr="pp_ifdef('_google_chrome')">
53 <div class="checkbox">
54 <label>
55 <input id="spellingServiceEnabled"
56 pref="spellcheck.use_spelling_service"
57 metric="Options_UseSpellingServiceCheckbox" type="checkbox">
58 <span i18n-content="spellingPref"></span>
59 </label>
60 </div>
61 </if>
52 <if expr="pp_ifdef('_google_chrome') and pp_ifdef('chromeos')"> 62 <if expr="pp_ifdef('_google_chrome') and pp_ifdef('chromeos')">
53 <div id="metricsReportingSetting" class="checkbox"> 63 <div id="metricsReportingSetting" class="checkbox">
54 <label> 64 <label>
55 <input id="metricsReportingEnabled" 65 <input id="metricsReportingEnabled"
56 pref="cros.metrics.reportingEnabled" type="checkbox"> 66 pref="cros.metrics.reportingEnabled" type="checkbox">
57 <span id="metricsReportingEnabledText" 67 <span id="metricsReportingEnabledText"
58 i18n-content="enableLogging"> 68 i18n-content="enableLogging">
59 </span> 69 </span>
60 </label> 70 </label>
61 </div> 71 </div>
62 </if> 72 </if>
63 <if expr="pp_ifdef('_google_chrome') and not pp_ifdef('chromeos')"> 73 <if expr="pp_ifdef('_google_chrome') and not pp_ifdef('chromeos')">
64 <div id="metricsReportingSetting" class="checkbox"> 74 <div id="metricsReportingSetting" class="checkbox">
65 <label> 75 <label>
66 <input id="metricsReportingEnabled" type="checkbox"> 76 <input id="metricsReportingEnabled" type="checkbox">
67 <span i18n-content="enableLogging"></span> 77 <span i18n-content="enableLogging"></span>
68 </label> 78 </label>
69 </div> 79 </div>
70 </if> 80 </if>
71 <if expr="pp_ifdef('_google_chrome') and pp_ifdef('chromeos')">
72 <div class="checkbox">
73 <label>
74 <input id="spellingServiceEnabled"
75 pref="spellcheck.use_spelling_service"
76 metric="Options_UseSpellingServiceCheckbox" type="checkbox">
77 <span i18n-content="spellingPref"></span>
78 </label>
79 </div>
80 </if>
81 </div> 81 </div>
82 </section> 82 </section>
83 <section> 83 <section>
84 <h3 i18n-content="advancedSectionTitleContent"></h3> 84 <h3 i18n-content="advancedSectionTitleContent"></h3>
85 <div> 85 <div>
86 <div class="section-group"> 86 <div class="section-group">
87 <label class="web-content-select-label"> 87 <label class="web-content-select-label">
88 <span i18n-content="defaultFontSizeLabel"></span> 88 <span i18n-content="defaultFontSizeLabel"></span>
89 <select id="defaultFontSize"> 89 <select id="defaultFontSize">
90 <option value="9" i18n-content="fontSizeLabelVerySmall"> 90 <option value="9" i18n-content="fontSizeLabelVerySmall">
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 <div class="checkbox"> 233 <div class="checkbox">
234 <label> 234 <label>
235 <input id="backgroundModeCheckbox" type="checkbox"> 235 <input id="backgroundModeCheckbox" type="checkbox">
236 <span i18n-content="backgroundModeCheckbox"></span> 236 <span i18n-content="backgroundModeCheckbox"></span>
237 </label> 237 </label>
238 </div> 238 </div>
239 </section> 239 </section>
240 </if> 240 </if>
241 </div> 241 </div>
242 </div> 242 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options2/browser_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698