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

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

Issue 8249011: Remove 'Enable tap-to-click' checkbox for non-touchpad devices. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: add missing system_options.html file Created 9 years, 2 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
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 18 matching lines...) Expand all
29 <div id="slider-control"> 29 <div id="slider-control">
30 <input id="sensitivity-range" type="range" min="1" max="5" 30 <input id="sensitivity-range" type="range" min="1" max="5"
31 pref="settings.touchpad.sensitivity2" class="touch-slider"> 31 pref="settings.touchpad.sensitivity2" class="touch-slider">
32 <div> 32 <div>
33 <span i18n-content="sensitivityLess"></span> 33 <span i18n-content="sensitivityLess"></span>
34 <span i18n-content="sensitivityMore" 34 <span i18n-content="sensitivityMore"
35 class="touchpad-sensitivity-more"></span> 35 class="touchpad-sensitivity-more"></span>
36 </div> 36 </div>
37 </div> 37 </div>
38 </div> 38 </div>
39 <div class="checkbox"> 39 <div id="tap-to-click" class="checkbox">
40 <label> 40 <label>
41 <input id="tap-to-click-check" 41 <input id="tap-to-click-check"
42 pref="settings.touchpad.enable_tap_to_click" 42 pref="settings.touchpad.enable_tap_to_click"
43 type="checkbox"> 43 type="checkbox">
44 <span i18n-content="enableTapToClick"></span> 44 <span i18n-content="enableTapToClick"></span>
45 </label> 45 </label>
46 </div> 46 </div>
47 </div> 47 </div>
48 </section> 48 </section>
49 <!-- By default, the bluetooth section is hidden. It is only 49 <!-- By default, the bluetooth section is hidden. It is only
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 <label> 94 <label>
95 <input id="accesibility-check" type="checkbox"> 95 <input id="accesibility-check" type="checkbox">
96 <span i18n-content="accessibility"></span> 96 <span i18n-content="accessibility"></span>
97 </label> 97 </label>
98 </div> 98 </div>
99 </div> 99 </div>
100 </div> 100 </div>
101 </section> 101 </section>
102 </div> 102 </div>
103 </div> 103 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698