// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_EVENTS_OZONE_EVDEV_INPUT_DEVICE_SETTINGS_EVDEV_H_ #define UI_EVENTS_OZONE_EVDEV_INPUT_DEVICE_SETTINGS_EVDEV_H_ #include <vector> #include "base/component_export.h" #include "base/containers/flat_map.h" namespace ui { enum class DomCode : uint32_t; constexpr int kDefaultSensitivity = …; struct MouseSettingsEvdev { … }; struct TouchpadSettingsEvdev { … }; struct PointingStickSettingsEvdev { … }; struct COMPONENT_EXPORT(EVDEV) InputDeviceSettingsEvdev { … }; } // namespace ui #endif // UI_EVENTS_OZONE_EVDEV_INPUT_DEVICE_SETTINGS_EVDEV_H_