diff options
author | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-07 22:50:36 +0000 |
---|---|---|
committer | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-07 22:50:36 +0000 |
commit | 556181cf7d30fd612eb3c5fb7d7e0182e6a3db1f (patch) | |
tree | 448993b42eb7db43a69829c9b279c59183cb50d6 /ui/base/ui_base_switches.cc | |
parent | aaeb410112aaff3f1d8719128b198e374649429f (diff) | |
download | chromium_src-556181cf7d30fd612eb3c5fb7d7e0182e6a3db1f.zip chromium_src-556181cf7d30fd612eb3c5fb7d7e0182e6a3db1f.tar.gz chromium_src-556181cf7d30fd612eb3c5fb7d7e0182e6a3db1f.tar.bz2 |
Touch: Adding switch for X calibration and disabling it temporarily.
We temporarily need to disable the calibration in X since too many ghost events show up on bending the display.
Passing in calibration values via command line will be added in the next iteration.
BUG=chrome-os-parter:12561
TEST=visual
Review URL: https://chromiumcodereview.appspot.com/10913119
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155515 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/base/ui_base_switches.cc')
-rw-r--r-- | ui/base/ui_base_switches.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/base/ui_base_switches.cc b/ui/base/ui_base_switches.cc index 545189e..663a8a4 100644 --- a/ui/base/ui_base_switches.cc +++ b/ui/base/ui_base_switches.cc @@ -22,6 +22,9 @@ const char kEnableBrowserTextSubpixelPositioning[] = // Enable touch screen calibration. const char kEnableTouchCalibration[] = "enable-touch-calibration"; +// Enable support for touch event calibration in x direction. +const char kEnableTouchCalibrationX[] = "enable-touch-calibration-x"; + // Enable support for touch events. const char kEnableTouchEvents[] = "enable-touch-events"; |