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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/chromeos/system_options.html
===================================================================
--- chrome/browser/resources/options/chromeos/system_options.html (revision 114069)
+++ chrome/browser/resources/options/chromeos/system_options.html (working copy)
@@ -31,31 +31,54 @@
i18n-content="brightnessIncrease"></button>
</div>
</section>
- <section id="touchpad-controls" hidden>
- <h3 i18n-content="touchpad"></h3>
+ <section id="input-controls">
+ <h3 i18n-content="pointer"></h3>
<div class="option-control-table">
<span class="option-name" i18n-content="sensitivity"></span>
- <div id="touchpad-value">
+ <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.
<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>
+ class="pointer-sensitivity-more"></span>
</div>
</div>
</div>
+ </div>
+ </section>
+ <section id="touchpad-controls" hidden>
+ <h3 i18n-content="touchpad"></h3>
+ <div class="option-control-table">
<div id="tap-to-click" class="checkbox">
<label>
<input id="tap-to-click-check"
- pref="settings.touchpad.enable_tap_to_click"
+ pref="settings.touchpad.enable_tap_to_click"
type="checkbox">
<span i18n-content="enableTapToClick"></span>
</label>
</div>
</div>
</section>
+ <section id="mouse-controls" hidden>
+ <h3 i18n-content="mouse"></h3>
+ <div class="option-control-table">
+ <div class="option-name" i18n-content="primaryMouse"></div>
+ <div>
+ <label>
+ <input type="radio" value="true" pref="settings.mouse.primary_left">
+ <span i18n-content="primaryMouseLeft"></span>
+ </label>
+ </div>
+ <div>
+ <label>
+ <input type="radio" value="false" pref="settings.mouse.primary_left">
+ <span i18n-content="primaryMouseRight"></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>
« 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