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

Unified Diff: chrome/browser/resources/options2/advanced_options.html

Issue 9232010: [uber page] Migrate all elements in the 'System' (cros) page to new locations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options2/advanced_options.html
===================================================================
--- chrome/browser/resources/options2/advanced_options.html (revision 117867)
+++ chrome/browser/resources/options2/advanced_options.html (working copy)
@@ -1,6 +1,25 @@
<div id="advancedPage" class="page" hidden>
<h1 i18n-content="advancedPage"></h1>
+<if expr="pp_ifdef('chromeos')">
<section>
+ <h3 i18n-content="datetimeTitle"></h3>
+ <div class="option-control-table">
+ <span class="option-name" i18n-content="timezone"></span>
+ <div id="timezone-value">
+ <select id="timezone-select" class="control" i18n-options="timezoneList"
+ data-type="string" pref="cros.system.timezone"></select>
+ </div>
+ <div class="checkbox">
+ <label>
+ <input id="use-24hour-clock" pref="settings.clock.use_24hour_clock"
+ type="checkbox">
+ <span i18n-content="use24HourClock"></span>
+ </label>
+ </div>
+ </div>
+ </section>
+</if>
+ <section>
<h3 i18n-content="advancedSectionTitlePrivacy"></h3>
<div>
<div class="section-group">
@@ -69,6 +88,25 @@
</if>
</div>
</section>
+ <!-- By default, the bluetooth section is hidden. It is only
+ visible if the command line flag 'enable_bluetooth' is set
+ and a bluetooth adapter is discovered or emmulating ChromeOS. -->
+<if expr="pp_ifdef('chromeos')">
+ <section id="bluetooth-devices" hidden>
+ <h3 i18n-content="bluetooth"></h3>
+ <div id="bluetooth-options-div">
+ <div id="bluetooth-buttons">
+ <button id="enable-bluetooth" i18n-content="enableBluetooth" hidden>
+ <button id="disable-bluetooth" i18n-content="disableBluetooth">
+ </div>
+ <div class="settings-list bluetooth-device-list" hidden>
+ <list id="bluetooth-paired-devices-list"></list>
+ </div>
+ <button id="bluetooth-add-device" hidden
+ i18n-content="addBluetoothDevice"></button>
+ </div>
+ </section>
+</if>
<section id="passwords-and-autofill-section">
<h3 i18n-content="passwordsAndAutofillGroupName"></h3>
<div class="checkbox">
@@ -242,6 +280,43 @@
</div>
</div>
</section>
+ <section>
+ <h3 i18n-content="accessibilityTitle"></h3>
+ <div class="option-control-table">
+ <div class="option-name">
+ <div class="checkbox">
+ <label>
+ <input id="accessibility-spoken-feedback-check" type="checkbox">
+ <span i18n-content="accessibilitySpokenFeedback"></span>
+ </label>
+ </div>
+ </div>
+ <div class="option-name">
+ <div class="checkbox">
+ <label>
+ <input id="accessibility-high-contrast-check" type="checkbox">
+ <span i18n-content="accessibilityHighContrast"></span>
+ </label>
+ </div>
+ </div>
+ <div class="option-name">
+ <div class="checkbox">
+ <label>
+ <input id="accessibility-screen-magnifier-check" type="checkbox">
+ <span i18n-content="accessibilityScreenMagnifier"></span>
+ </label>
+ </div>
+ </div>
+ <div class="option-name">
+ <div class="checkbox">
+ <label>
+ <input id="accessibility-virtual-keyboard-check" type="checkbox">
+ <span i18n-content="accessibilityVirtualKeyboard"></span>
+ </label>
+ </div>
+ </div>
+ </div>
+ </section>
</if>
<if expr="os != 'darwin' and not pp_ifdef('chromeos')">
<section id="background-section">

Powered by Google App Engine
This is Rietveld 408576698