Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: ui/events/ozone/evdev/input_device_settings_evdev.h

Issue 1412623006: Developer Feature: Add Debug Accelerators to Toggle Touchscreen/Touchpad On or Off (CrOS) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sadrul's comment Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698