event_switches.h 934 B

12345678910111213141516171819202122232425262728293031
  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. #ifndef UI_EVENTS_EVENT_SWITCHES_H_
  5. #define UI_EVENTS_EVENT_SWITCHES_H_
  6. #include "build/build_config.h"
  7. #include "ui/events/events_base_export.h"
  8. namespace switches {
  9. EVENTS_BASE_EXPORT extern const char kCompensateForUnstablePinchZoom[];
  10. EVENTS_BASE_EXPORT extern const char kTouchSlopDistance[];
  11. #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
  12. EVENTS_BASE_EXPORT extern const char kTouchDevices[];
  13. EVENTS_BASE_EXPORT extern const char kPenDevices[];
  14. #endif
  15. #if defined(USE_OZONE)
  16. EVENTS_BASE_EXPORT extern const char kEdgeTouchFiltering[];
  17. EVENTS_BASE_EXPORT extern const char kDisableCancelAllTouches[];
  18. EVENTS_BASE_EXPORT
  19. extern const char kEnableMicrophoneMuteSwitchDeviceSwitch[];
  20. #endif
  21. } // namespace switches
  22. #endif // UI_EVENTS_EVENT_SWITCHES_H_