Index: chrome/browser/resources/options2/chromeos/system_options.html |
diff --git a/chrome/browser/resources/options2/chromeos/system_options.html b/chrome/browser/resources/options2/chromeos/system_options.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bab4667080ca4cbe71b930a2e0316d59f545d26f |
--- /dev/null |
+++ b/chrome/browser/resources/options2/chromeos/system_options.html |
@@ -0,0 +1,125 @@ |
+<div id="systemPage" class="page" hidden> |
+ <h1 i18n-content="systemPage"></h1> |
+ <div class="displaytable"> |
+ <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> |
+ <section> |
+ <h3 i18n-content="screen"></h3> |
+ <div id="brightness-value"> |
+ <span i18n-content="brightness"></span> |
+ <button id="brightness-decrease-button" |
+ i18n-content="brightnessDecrease"></button> |
+ <button id="brightness-increase-button" |
+ i18n-content="brightnessIncrease"></button> |
+ </div> |
+ </section> |
+ <section id="touchpad-controls" hidden> |
+ <h3 i18n-content="touchpad"></h3> |
+ <div class="option-control-table"> |
+ <span class="option-name" i18n-content="sensitivity"></span> |
+ <div id="touchpad-value"> |
+ <div id="slider-control"> |
+ <input id="sensitivity-range" type="range" min="1" max="5" |
+ pref="settings.touchpad.sensitivity2" class="touch-slider"> |
+ <div> |
+ <span i18n-content="sensitivityLess"></span> |
+ <span i18n-content="sensitivityMore" |
+ class="touchpad-sensitivity-more"></span> |
+ </div> |
+ </div> |
+ </div> |
+ <div id="tap-to-click" class="checkbox"> |
+ <label> |
+ <input id="tap-to-click-check" |
+ pref="settings.touchpad.enable_tap_to_click" |
+ type="checkbox"> |
+ <span i18n-content="enableTapToClick"></span> |
+ </label> |
+ </div> |
+ </div> |
+ </section> |
+ <!-- By default, the bluetooth section is hidden. It is only |
+ visible if the command line flag --enable_bluetooth is set. --> |
+ <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 id="no-bluetooth-devices-label" |
+ i18n-content="noBluetoothDevicesFound"> |
+ </div> |
+ <div id="bluetooth-device-list"> |
+ <!-- A list of connected devices is inserted here on page load. --> |
+ <!-- The list of devices is updated asynchronously on clicking |
+ 'Find Devices'. --> |
+ </div> |
+ <!-- Template for items in list of Bluetooth devices --> |
+ <div id="bluetooth-item-template" class="bluetooth-item" hidden> |
+ <div class="bluetooth-item-text"> |
+ <div class="network-name-label"></div> |
+ <div class="bluetooth-status"> |
+ <span class="network-status-label"></span> |
+ <div class="inline-spinner" hidden></div> |
+ </div> |
+ <div class="bluetooth-instructions"></div> |
+ </div> |
+ <div class="bluetooth-button-group"></div> |
+ </div> |
+ <div id = "bluetooth-finder-container"> |
+ <button id="bluetooth-find-devices" |
+ i18n-content="findBluetoothDevices"></button> |
+ <div id="bluetooth-scanning-icon" |
+ class="inline-spinner transparent"></div> |
+ <span id="bluetooth-scanning-label" class="transparent" |
+ i18n-content="bluetoothScanning"></span> |
+ </div> |
+ </div> |
+ </section> |
+ <section> |
+ <h3 i18n-content="language"></h3> |
+ <div class="option-control-table"> |
+ <div class="option-name"> |
+ <button id="language-button" i18n-content="languageCustomize"> |
+ </button> |
+ </div> |
+ <div class="option-name"> |
+ <button id="modifier-keys-button" |
+ i18n-content="modifierKeysCustomize"></button> |
+ </div> |
+ </div> |
+ </section> |
+ <section> |
+ <h3 i18n-content="accessibilityTitle"></h3> |
+ <div class="option-control-table"> |
+ <div class="option-name"> |
+ <div class="checkbox"> |
+ <label> |
+ <input id="accesibility-check" type="checkbox"> |
+ <span i18n-content="accessibility"></span> |
+ </label> |
+ </div> |
+ </div> |
+ </div> |
+ </section> |
+ </div> |
+</div> |