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
11namespace switches {
12
13EVENTS_BASE_EXPORT extern const char kEnableScrollPrediction[];
14EVENTS_BASE_EXPORT extern const char kTouchEvents[];
15EVENTS_BASE_EXPORT extern const char kTouchEventsAuto[];
16EVENTS_BASE_EXPORT extern const char kTouchEventsEnabled[];
17EVENTS_BASE_EXPORT extern const char kTouchEventsDisabled[];
18EVENTS_BASE_EXPORT extern const char kCompensateForUnstablePinchZoom[];
19
20#if defined(OS_LINUX)
21EVENTS_BASE_EXPORT extern const char kTouchDevices[];
22#endif
23
24#if defined(USE_XI2_MT) || defined(USE_OZONE)
25EVENTS_BASE_EXPORT extern const char kTouchCalibration[];
26#endif
27
28}  // namespace switches
29
30#endif  // UI_EVENTS_EVENTS_SWITCHES_H_
31