James Robinson | 646469d | 2014-10-03 15:33:28 -0700 | [diff] [blame] | 1 | // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef UI_EVENTS_EVENTS_SWITCHES_H_ |
| 6 | #define UI_EVENTS_EVENTS_SWITCHES_H_ |
| 7 | |
| 8 | #include "base/compiler_specific.h" |
| 9 | #include "ui/events/events_base_export.h" |
| 10 | |
| 11 | namespace switches { |
| 12 | |
| 13 | EVENTS_BASE_EXPORT extern const char kEnableScrollPrediction[]; |
| 14 | EVENTS_BASE_EXPORT extern const char kTouchEvents[]; |
| 15 | EVENTS_BASE_EXPORT extern const char kTouchEventsAuto[]; |
| 16 | EVENTS_BASE_EXPORT extern const char kTouchEventsEnabled[]; |
| 17 | EVENTS_BASE_EXPORT extern const char kTouchEventsDisabled[]; |
| 18 | EVENTS_BASE_EXPORT extern const char kCompensateForUnstablePinchZoom[]; |
| 19 | |
| 20 | #if defined(OS_LINUX) |
| 21 | EVENTS_BASE_EXPORT extern const char kTouchDevices[]; |
| 22 | #endif |
| 23 | |
Craig Stout | f8b40b5 | 2015-08-13 11:48:01 -0700 | [diff] [blame] | 24 | #if defined(USE_X11) || defined(USE_OZONE) |
| 25 | EVENTS_BASE_EXPORT extern const char kExtraTouchNoiseFiltering[]; |
James Robinson | 646469d | 2014-10-03 15:33:28 -0700 | [diff] [blame] | 26 | EVENTS_BASE_EXPORT extern const char kTouchCalibration[]; |
| 27 | #endif |
| 28 | |
| 29 | } // namespace switches |
| 30 | |
| 31 | #endif // UI_EVENTS_EVENTS_SWITCHES_H_ |