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

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

Issue 8905025: ChromeOS Mouse settings. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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
1 <div id="systemPage" class="page" hidden> 1 <div id="systemPage" class="page" hidden>
2 <h1 i18n-content="systemPage"></h1> 2 <h1 i18n-content="systemPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <section> 4 <section>
5 <h3 i18n-content="datetimeTitle"></h3> 5 <h3 i18n-content="datetimeTitle"></h3>
6 <div class="option-control-table"> 6 <div class="option-control-table">
7 <span class="option-name" i18n-content="timezone"></span> 7 <span class="option-name" i18n-content="timezone"></span>
8 <div id="timezone-value"> 8 <div id="timezone-value">
9 <select id="timezone-select" class="control" 9 <select id="timezone-select" class="control"
10 i18n-options="timezoneList" 10 i18n-options="timezoneList"
(...skipping 13 matching lines...) Expand all
24 <section> 24 <section>
25 <h3 i18n-content="screen"></h3> 25 <h3 i18n-content="screen"></h3>
26 <div id="brightness-value"> 26 <div id="brightness-value">
27 <span i18n-content="brightness"></span> 27 <span i18n-content="brightness"></span>
28 <button id="brightness-decrease-button" 28 <button id="brightness-decrease-button"
29 i18n-content="brightnessDecrease"></button> 29 i18n-content="brightnessDecrease"></button>
30 <button id="brightness-increase-button" 30 <button id="brightness-increase-button"
31 i18n-content="brightnessIncrease"></button> 31 i18n-content="brightnessIncrease"></button>
32 </div> 32 </div>
33 </section> 33 </section>
34 <section id="touchpad-controls" hidden> 34 <section id="input-controls">
35 <h3 i18n-content="touchpad"></h3> 35 <h3 i18n-content="pointer"></h3>
36 <div class="option-control-table"> 36 <div class="option-control-table">
37 <span class="option-name" i18n-content="sensitivity"></span> 37 <span class="option-name" i18n-content="sensitivity"></span>
38 » <div id="touchpad-value"> 38 <div id="slider-value">
xiyuan 2011/12/13 21:55:54 nit: slider-value sounds too generic, how about "p
achuithb 2011/12/13 21:59:41 Done.
39 <div id="slider-control"> 39 <div id="slider-control">
40 <input id="sensitivity-range" type="range" min="1" max="5" 40 <input id="sensitivity-range" type="range" min="1" max="5"
41 pref="settings.touchpad.sensitivity2" class="touch-slider"> 41 pref="settings.touchpad.sensitivity2" class="touch-slider">
42 <div> 42 <div>
43 <span i18n-content="sensitivityLess"></span> 43 <span i18n-content="sensitivityLess"></span>
44 <span i18n-content="sensitivityMore" 44 <span i18n-content="sensitivityMore"
45 class="touchpad-sensitivity-more"></span> 45 class="pointer-sensitivity-more"></span>
46 </div> 46 </div>
47 </div> 47 </div>
48 </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">
49 <div id="tap-to-click" class="checkbox"> 54 <div id="tap-to-click" class="checkbox">
50 <label> 55 <label>
51 <input id="tap-to-click-check" 56 <input id="tap-to-click-check"
52 pref="settings.touchpad.enable_tap_to_click" 57 pref="settings.touchpad.enable_tap_to_click"
53 type="checkbox"> 58 type="checkbox">
54 <span i18n-content="enableTapToClick"></span> 59 <span i18n-content="enableTapToClick"></span>
55 </label> 60 </label>
56 </div> 61 </div>
57 </div> 62 </div>
58 </section> 63 </section>
64 <section id="mouse-controls" hidden>
65 <h3 i18n-content="mouse"></h3>
66 <div class="option-control-table">
67 <div class="option-name" i18n-content="primaryMouse"></div>
68 <div>
69 <label>
70 <input type="radio" value="true" pref="settings.mouse.primary_left">
71 <span i18n-content="primaryMouseLeft"></span>
72 </label>
73 </div>
74 <div>
75 <label>
76 <input type="radio" value="false" pref="settings.mouse.primary_left">
77 <span i18n-content="primaryMouseRight"></span>
78 </label>
79 </div>
80 </div>
81 </section>
59 <!-- By default, the bluetooth section is hidden. It is only 82 <!-- By default, the bluetooth section is hidden. It is only
60 visible if the command line flag --enable_bluetooth is set. --> 83 visible if the command line flag --enable_bluetooth is set. -->
61 <section id="bluetooth-devices" hidden> 84 <section id="bluetooth-devices" hidden>
62 <h3 i18n-content="bluetooth"></h3> 85 <h3 i18n-content="bluetooth"></h3>
63 <div id="bluetooth-options-div"> 86 <div id="bluetooth-options-div">
64 <div id="bluetooth-buttons"> 87 <div id="bluetooth-buttons">
65 <button id="enable-bluetooth" i18n-content="enableBluetooth" hidden> 88 <button id="enable-bluetooth" i18n-content="enableBluetooth" hidden>
66 <button id="disable-bluetooth" i18n-content="disableBluetooth"> 89 <button id="disable-bluetooth" i18n-content="disableBluetooth">
67 </div> 90 </div>
68 <div id="no-bluetooth-devices-label" 91 <div id="no-bluetooth-devices-label"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 <label> 139 <label>
117 <input id="accesibility-check" type="checkbox"> 140 <input id="accesibility-check" type="checkbox">
118 <span i18n-content="accessibility"></span> 141 <span i18n-content="accessibility"></span>
119 </label> 142 </label>
120 </div> 143 </div>
121 </div> 144 </div>
122 </div> 145 </div>
123 </section> 146 </section>
124 </div> 147 </div>
125 </div> 148 </div>
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/system/touchpad_settings.cc ('k') | chrome/browser/resources/options/chromeos/system_options_page.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698