summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-23 21:46:38 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-23 21:46:38 +0000
commit9da67aa021c15d0954831b02e9592c2fd575f083 (patch)
tree51cbd466424a24ef6c26a2962829a3a5caaf2d68 /chrome/common
parentb6d432335f59500e092de2be4fcf42ed303ae1c5 (diff)
downloadchromium_src-9da67aa021c15d0954831b02e9592c2fd575f083.zip
chromium_src-9da67aa021c15d0954831b02e9592c2fd575f083.tar.gz
chromium_src-9da67aa021c15d0954831b02e9592c2fd575f083.tar.bz2
Lands http://codereview.chromium.org/227008 for Charlie:
Add touchpad sensitivity setting. BUG=22848 TEST=none Review URL: http://codereview.chromium.org/223012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26996 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/pref_names.cc5
-rw-r--r--chrome/common/pref_names.h1
2 files changed, 5 insertions, 1 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index a5210e8..b1104da 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -190,8 +190,11 @@ extern const wchar_t kTapToClickEnabled[] =
extern const wchar_t kVertEdgeScrollEnabled[] =
L"settings.touchpad.enable_vert_edge_scroll";
-// A double pref for the touchpad speed factor.
+// A integer pref for the touchpad speed factor.
extern const wchar_t kTouchpadSpeedFactor[] = L"settings.touchpad.speed_factor";
+
+// A integer pref for the touchpad sensitivity.
+extern const wchar_t kTouchpadSensitivity[] = L"settings.touchpad.sensitivity";
#endif
// The disabled messages in IPC logging.
diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h
index 7ec556a..01fb279 100644
--- a/chrome/common/pref_names.h
+++ b/chrome/common/pref_names.h
@@ -72,6 +72,7 @@ extern const wchar_t kTLS1Enabled[];
extern const wchar_t kTapToClickEnabled[];
extern const wchar_t kVertEdgeScrollEnabled[];
extern const wchar_t kTouchpadSpeedFactor[];
+extern const wchar_t kTouchpadSensitivity[];
#endif
extern const wchar_t kIpcDisabledMessages[];
extern const wchar_t kShowHomeButton[];