OLD | NEW |
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 <span id="browser-options-search-field-container" | 4 <span id="browser-options-search-field-container" |
5 class="search-field-container"> | 5 class="search-field-container"> |
6 <input id="search-field" type="search" | 6 <input id="search-field" type="search" |
7 i18n-values="placeholder:searchPlaceholder; | 7 i18n-values="placeholder:searchPlaceholder; |
8 aria-label:searchPlaceholder" incremental> | 8 aria-label:searchPlaceholder" incremental> |
9 </span> | 9 </span> |
10 </header> | 10 </header> |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 </div> | 321 </div> |
322 <if expr="pp_ifdef('_google_chrome')"> | 322 <if expr="pp_ifdef('_google_chrome')"> |
323 <div class="checkbox"> | 323 <div class="checkbox"> |
324 <label> | 324 <label> |
325 <input id="spellingServiceEnabled" | 325 <input id="spellingServiceEnabled" |
326 pref="spellcheck.use_spelling_service" | 326 pref="spellcheck.use_spelling_service" |
327 metric="Options_UseSpellingServiceCheckbox" type="checkbox"> | 327 metric="Options_UseSpellingServiceCheckbox" type="checkbox"> |
328 <span i18n-content="spellingPref"></span> | 328 <span i18n-content="spellingPref"></span> |
329 </label> | 329 </label> |
330 </div> | 330 </div> |
331 </if> | |
332 <div id="metricsReportingSetting" class="checkbox"> | 331 <div id="metricsReportingSetting" class="checkbox"> |
333 <label> | 332 <label> |
334 <if expr="pp_ifdef('_google_chrome') and pp_ifdef('chromeos')"> | 333 <if expr="pp_ifdef('chromeos')"> |
335 <input id="metricsReportingEnabled" | 334 <input id="metricsReportingEnabled" |
336 pref="cros.metrics.reportingEnabled" type="checkbox"> | 335 pref="cros.metrics.reportingEnabled" type="checkbox"> |
337 </if> | 336 </if> |
338 <if expr="pp_ifdef('_google_chrome') and not pp_ifdef('chromeos')"> | 337 <if expr="not pp_ifdef('chromeos')"> |
339 <input id="metricsReportingEnabled" type="checkbox"> | 338 <input id="metricsReportingEnabled" type="checkbox"> |
340 </if> | 339 </if> |
341 <span i18n-content="enableLogging"></span> | 340 <span i18n-content="enableLogging"></span> |
342 </label> | 341 </label> |
343 </div> | 342 </div> |
| 343 </if> <!-- pp_ifdef('_google_chrome') --> |
344 </div> | 344 </div> |
345 </section> | 345 </section> |
346 <!-- By default, the bluetooth section is hidden. It is only | 346 <!-- By default, the bluetooth section is hidden. It is only |
347 visible if the command line flag 'enable_bluetooth' is set | 347 visible if the command line flag 'enable_bluetooth' is set |
348 and a bluetooth adapter is discovered or emmulating ChromeOS. --> | 348 and a bluetooth adapter is discovered or emmulating ChromeOS. --> |
349 <if expr="pp_ifdef('chromeos')"> | 349 <if expr="pp_ifdef('chromeos')"> |
350 <section id="bluetooth-devices" hidden> | 350 <section id="bluetooth-devices" hidden> |
351 <h3 i18n-content="bluetooth"></h3> | 351 <h3 i18n-content="bluetooth"></h3> |
352 <div id="bluetooth-options-div"> | 352 <div id="bluetooth-options-div"> |
353 <div class="checkbox"> | 353 <div class="checkbox"> |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
611 </section> | 611 </section> |
612 </if> | 612 </if> |
613 </div> <!-- advanced-settings-container --> | 613 </div> <!-- advanced-settings-container --> |
614 </div> <!-- advanced-settings --> | 614 </div> <!-- advanced-settings --> |
615 <footer> | 615 <footer> |
616 <button id="advanced-settings-expander" class="link-button" | 616 <button id="advanced-settings-expander" class="link-button" |
617 i18n-content="showAdvancedSettings"> | 617 i18n-content="showAdvancedSettings"> |
618 </button> | 618 </button> |
619 </footer> | 619 </footer> |
620 </div> | 620 </div> |
OLD | NEW |