event_switches.h revision 8bcbed890bc3ce4d7a057a8f32cab53fa534672e
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_export.h"
10
11namespace switches {
12
13EVENTS_EXPORT extern const char kEnableScrollPrediction[];
14EVENTS_EXPORT extern const char kTouchEvents[];
15EVENTS_EXPORT extern const char kTouchEventsAuto[];
16EVENTS_EXPORT extern const char kTouchEventsEnabled[];
17EVENTS_EXPORT extern const char kTouchEventsDisabled[];
18
19#if defined(OS_LINUX)
20EVENTS_EXPORT extern const char kTouchDevices[];
21#endif
22
23#if defined(USE_OZONE)
24EVENTS_EXPORT extern const char kOzoneEvents[];
25#endif
26
27}  // namespace switches
28
29#endif  // UI_EVENTS_EVENTS_SWITCHES_H_
30