| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_EVENTS_OZONE_EVDEV_INPUT_DEVICE_SETTINGS_EVDEV_H_ | 5 #ifndef UI_EVENTS_OZONE_EVDEV_INPUT_DEVICE_SETTINGS_EVDEV_H_ |
| 6 #define UI_EVENTS_OZONE_EVDEV_INPUT_DEVICE_SETTINGS_EVDEV_H_ | 6 #define UI_EVENTS_OZONE_EVDEV_INPUT_DEVICE_SETTINGS_EVDEV_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 namespace ui { | 10 namespace ui { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 bool tap_dragging_enabled = false; | 25 bool tap_dragging_enabled = false; |
| 26 bool natural_scroll_enabled = false; | 26 bool natural_scroll_enabled = false; |
| 27 bool tap_to_click_paused = false; | 27 bool tap_to_click_paused = false; |
| 28 bool touch_event_logging_enabled = true; | 28 bool touch_event_logging_enabled = true; |
| 29 | 29 |
| 30 int touchpad_sensitivity = kDefaultSensitivity; | 30 int touchpad_sensitivity = kDefaultSensitivity; |
| 31 int mouse_sensitivity = kDefaultSensitivity; | 31 int mouse_sensitivity = kDefaultSensitivity; |
| 32 | 32 |
| 33 bool enable_devices = true; // If false, all input is disabled. | 33 bool enable_devices = true; // If false, all input is disabled. |
| 34 bool enable_internal_touchpad = true; | 34 bool enable_internal_touchpad = true; |
| 35 bool enable_touch_screens = true; |
| 35 bool enable_internal_keyboard_filter = false; | 36 bool enable_internal_keyboard_filter = false; |
| 36 std::vector<DomCode> internal_keyboard_allowed_keys; | 37 std::vector<DomCode> internal_keyboard_allowed_keys; |
| 37 }; | 38 }; |
| 38 | 39 |
| 39 } // namespace ui | 40 } // namespace ui |
| 40 | 41 |
| 41 #endif // UI_EVENTS_OZONE_EVDEV_INPUT_DEVICE_SETTINGS_EVDEV_H_ | 42 #endif // UI_EVENTS_OZONE_EVDEV_INPUT_DEVICE_SETTINGS_EVDEV_H_ |
| OLD | NEW |