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

Side by Side Diff: chrome/browser/resources/options2/chromeos/system_options.html

Issue 8895023: Options2: Pull the trigger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DIAF. Created 9 years 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
(Empty)
1 <div id="systemPage" class="page" hidden>
2 <h1 i18n-content="systemPage"></h1>
3 <div class="displaytable">
4 <section>
5 <h3 i18n-content="datetimeTitle"></h3>
6 <div class="option-control-table">
7 <span class="option-name" i18n-content="timezone"></span>
8 <div id="timezone-value">
9 <select id="timezone-select" class="control"
10 i18n-options="timezoneList"
11 data-type="string"
12 pref="cros.system.timezone"></select>
13 </div>
14 <div class="checkbox">
15 <label>
16 <input id="use-24hour-clock"
17 pref="settings.clock.use_24hour_clock"
18 type="checkbox">
19 <span i18n-content="use24HourClock"></span>
20 </label>
21 </div>
22 </div>
23 </section>
24 <section>
25 <h3 i18n-content="screen"></h3>
26 <div id="brightness-value">
27 <span i18n-content="brightness"></span>
28 <button id="brightness-decrease-button"
29 i18n-content="brightnessDecrease"></button>
30 <button id="brightness-increase-button"
31 i18n-content="brightnessIncrease"></button>
32 </div>
33 </section>
34 <section id="touchpad-controls" hidden>
35 <h3 i18n-content="touchpad"></h3>
36 <div class="option-control-table">
37 <span class="option-name" i18n-content="sensitivity"></span>
38 <div id="touchpad-value">
39 <div id="slider-control">
40 <input id="sensitivity-range" type="range" min="1" max="5"
41 pref="settings.touchpad.sensitivity2" class="touch-slider">
42 <div>
43 <span i18n-content="sensitivityLess"></span>
44 <span i18n-content="sensitivityMore"
45 class="touchpad-sensitivity-more"></span>
46 </div>
47 </div>
48 </div>
49 <div id="tap-to-click" class="checkbox">
50 <label>
51 <input id="tap-to-click-check"
52 pref="settings.touchpad.enable_tap_to_click"
53 type="checkbox">
54 <span i18n-content="enableTapToClick"></span>
55 </label>
56 </div>
57 </div>
58 </section>
59 <!-- By default, the bluetooth section is hidden. It is only
60 visible if the command line flag --enable_bluetooth is set. -->
61 <section id="bluetooth-devices" hidden>
62 <h3 i18n-content="bluetooth"></h3>
63 <div id="bluetooth-options-div">
64 <div id="bluetooth-buttons">
65 <button id="enable-bluetooth" i18n-content="enableBluetooth" hidden>
66 <button id="disable-bluetooth" i18n-content="disableBluetooth">
67 </div>
68 <div id="no-bluetooth-devices-label"
69 i18n-content="noBluetoothDevicesFound">
70 </div>
71 <div id="bluetooth-device-list">
72 <!-- A list of connected devices is inserted here on page load. -->
73 <!-- The list of devices is updated asynchronously on clicking
74 'Find Devices'. -->
75 </div>
76 <!-- Template for items in list of Bluetooth devices -->
77 <div id="bluetooth-item-template" class="bluetooth-item" hidden>
78 <div class="bluetooth-item-text">
79 <div class="network-name-label"></div>
80 <div class="bluetooth-status">
81 <span class="network-status-label"></span>
82 <div class="inline-spinner" hidden></div>
83 </div>
84 <div class="bluetooth-instructions"></div>
85 </div>
86 <div class="bluetooth-button-group"></div>
87 </div>
88 <div id = "bluetooth-finder-container">
89 <button id="bluetooth-find-devices"
90 i18n-content="findBluetoothDevices"></button>
91 <div id="bluetooth-scanning-icon"
92 class="inline-spinner transparent"></div>
93 <span id="bluetooth-scanning-label" class="transparent"
94 i18n-content="bluetoothScanning"></span>
95 </div>
96 </div>
97 </section>
98 <section>
99 <h3 i18n-content="language"></h3>
100 <div class="option-control-table">
101 <div class="option-name">
102 <button id="language-button" i18n-content="languageCustomize">
103 </button>
104 </div>
105 <div class="option-name">
106 <button id="modifier-keys-button"
107 i18n-content="modifierKeysCustomize"></button>
108 </div>
109 </div>
110 </section>
111 <section>
112 <h3 i18n-content="accessibilityTitle"></h3>
113 <div class="option-control-table">
114 <div class="option-name">
115 <div class="checkbox">
116 <label>
117 <input id="accesibility-check" type="checkbox">
118 <span i18n-content="accessibility"></span>
119 </label>
120 </div>
121 </div>
122 </div>
123 </section>
124 </div>
125 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698