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

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

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes 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
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="input-controls">
35 <h3 i18n-content="pointer"></h3>
36 <div class="option-control-table">
37 <span class="option-name" i18n-content="sensitivity"></span>
38 <div id="pointer-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="pointer-sensitivity-more"></span>
46 </div>
47 </div>
48 </div>
49 </div>
50 </section>
51 <section id="touchpad-controls" hidden>
52 <h3 i18n-content="touchpad"></h3>
53 <div class="option-control-table">
54 <div class="checkbox">
55 <label>
56 <input type="checkbox"
57 pref="settings.touchpad.enable_tap_to_click">
58 <span i18n-content="enableTapToClick"></span>
59 </label>
60 </div>
61 </div>
62 </section>
63 <section id="mouse-controls" hidden>
64 <h3 i18n-content="mouse"></h3>
65 <div class="option-control-table">
66 <div class="checkbox">
67 <label>
68 <input type="checkbox" pref="settings.mouse.primary_right">
69 <span i18n-content="primaryMouseRight"></span>
70 </label>
71 </div>
72 </div>
73 </section>
74 <!-- By default, the bluetooth section is hidden. It is only
75 visible if the command line flag --enable_bluetooth is set
76 and a bluetooth adapter is discovered or emmulating ChromeOS. -->
77 <section id="bluetooth-devices" hidden>
78 <h3 i18n-content="bluetooth"></h3>
79 <div id="bluetooth-options-div">
80 <div class="checkbox">
81 <label>
82 <input type="checkbox" id ="enable-bluetooth">
83 <span i18n-content="enableBluetooth">
84 </label>
85 </div>
86 <div class="settings-list bluetooth-device-list" hidden>
87 <list id="bluetooth-paired-devices-list"></list>
88 <div id="bluetooth-paired-devices-list-empty-placeholder"
89 class="bluetooth-empty-list-label" hidden>
90 <span i18n-content="bluetoothNoDevices"></span>
91 </div>
92 </div>
93 <div id="bluetooth-button-group">
94 <button id="bluetooth-add-device"
95 i18n-content="addBluetoothDevice" hidden></button>
96 <button id="bluetooth-reconnect-device"
97 i18n-content="bluetoothConnectDevice" disabled hidden></button>
98 </div>
99 </div>
100 </section>
101 <section>
102 <h3 i18n-content="language"></h3>
103 <div class="option-control-table">
104 <div class="option-name">
105 <button id="language-button" i18n-content="languageCustomize">
106 </button>
107 </div>
108 <div class="option-name">
109 <button id="modifier-keys-button"
110 i18n-content="modifierKeysCustomize"></button>
111 </div>
112 </div>
113 </section>
114 <section>
115 <h3 i18n-content="accessibilityTitle"></h3>
116 <div class="option-control-table">
117 <div class="option-name">
118 <div class="checkbox">
119 <label>
120 <input id="accessibility-spoken-feedback-check" type="checkbox">
121 <span i18n-content="accessibilitySpokenFeedback"></span>
122 </label>
123 </div>
124 </div>
125 </div>
126 </section>
127 </div>
128 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698