diff options
author | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-07 22:44:58 +0000 |
---|---|---|
committer | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-07 22:44:58 +0000 |
commit | 9b75ac5386e0ba975f36f706be8a0fd78d7c4e8a (patch) | |
tree | c44f6ee0fcc64d21ccaf1f989c6e972234550a24 /ui/base/ui_base_switches.cc | |
parent | c6c8cfeedfc02c9fc9d09b8a0bd07a6d6275b624 (diff) | |
download | chromium_src-9b75ac5386e0ba975f36f706be8a0fd78d7c4e8a.zip chromium_src-9b75ac5386e0ba975f36f706be8a0fd78d7c4e8a.tar.gz chromium_src-9b75ac5386e0ba975f36f706be8a0fd78d7c4e8a.tar.bz2 |
Calibrating touch input
BUG=116890
TEST=None, manually tested
Review URL: https://chromiumcodereview.appspot.com/10306014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135747 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/base/ui_base_switches.cc')
-rw-r--r-- | ui/base/ui_base_switches.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/base/ui_base_switches.cc b/ui/base/ui_base_switches.cc index d1a2597..67ef448 100644 --- a/ui/base/ui_base_switches.cc +++ b/ui/base/ui_base_switches.cc @@ -8,7 +8,10 @@ namespace switches { // The default device scale factor to apply to the browser UI and // the contents in the absence of a viewport meta tag. -const char kDefaultDeviceScaleFactor[] = "default-device-scale-factor"; +const char kDefaultDeviceScaleFactor[] = "default-device-scale-factor"; + +// Enable touch screen calibration. +const char kDisableTouchCalibration[] = "disable-touch-calibration"; // Enable support for touch events. const char kEnableTouchEvents[] = "enable-touch-events"; @@ -28,6 +31,7 @@ const char kNoMessageBox[] = "no-message-box"; // Enables UI changes that make it easier to use with a touchscreen. const char kTouchOptimizedUI[] = "touch-optimized-ui"; + #if defined(OS_MACOSX) const char kDisableCompositedCoreAnimationPlugins[] = "disable-composited-core-animation-plugins"; |