| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chrome/browser/chromeos/events/event_rewriter.h" | 5 #include "chrome/browser/chromeos/events/event_rewriter.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "ash/sticky_keys/sticky_keys_controller.h" | 9 #include "ash/sticky_keys/sticky_keys_controller.h" |
| 10 #include "ash/wm/window_state.h" | 10 #include "ash/wm/window_state.h" |
| 11 #include "ash/wm/window_util.h" | 11 #include "ash/wm/window_util.h" |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/prefs/pref_service.h" | 15 #include "base/prefs/pref_service.h" |
| 16 #include "base/strings/string_util.h" | 16 #include "base/strings/string_util.h" |
| 17 #include "base/sys_info.h" | 17 #include "base/sys_info.h" |
| 18 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" | 18 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" |
| 19 #include "chrome/browser/extensions/extension_commands_global_registry.h" | 19 #include "chrome/browser/extensions/extension_commands_global_registry.h" |
| 20 #include "chrome/browser/profiles/profile_manager.h" | 20 #include "chrome/browser/profiles/profile_manager.h" |
| 21 #include "chrome/common/pref_names.h" | 21 #include "chrome/common/pref_names.h" |
| 22 #include "chromeos/chromeos_switches.h" | 22 #include "chromeos/chromeos_switches.h" |
| 23 #include "components/user_manager/user_manager.h" | 23 #include "components/user_manager/user_manager.h" |
| 24 #include "ui/base/ime/chromeos/ime_keyboard.h" | 24 #include "ui/base/ime/chromeos/ime_keyboard.h" |
| 25 #include "ui/base/ime/chromeos/input_method_manager.h" | 25 #include "ui/base/ime/chromeos/input_method_manager.h" |
| 26 #include "ui/events/devices/device_data_manager.h" | 26 #include "ui/events/devices/device_data_manager.h" |
| 27 #include "ui/events/event.h" | 27 #include "ui/events/event.h" |
| 28 #include "ui/events/event_utils.h" | 28 #include "ui/events/event_utils.h" |
| 29 #include "ui/events/keycodes/dom3/dom_code.h" | 29 #include "ui/events/keycodes/dom/dom_code.h" |
| 30 #include "ui/events/keycodes/dom4/keycode_converter.h" | 30 #include "ui/events/keycodes/dom/keycode_converter.h" |
| 31 #include "ui/events/keycodes/keyboard_code_conversion.h" | 31 #include "ui/events/keycodes/keyboard_code_conversion.h" |
| 32 #include "ui/wm/core/window_util.h" | 32 #include "ui/wm/core/window_util.h" |
| 33 | 33 |
| 34 #if defined(USE_X11) | 34 #if defined(USE_X11) |
| 35 #include <X11/extensions/XInput2.h> | 35 #include <X11/extensions/XInput2.h> |
| 36 #include <X11/Xlib.h> | 36 #include <X11/Xlib.h> |
| 37 | 37 |
| 38 // Get rid of macros from Xlib.h that conflicts with other parts of the code. | 38 // Get rid of macros from Xlib.h that conflicts with other parts of the code. |
| 39 #undef RootWindow | 39 #undef RootWindow |
| 40 #undef Status | 40 #undef Status |
| (...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 948 for (const auto& keyboard : keyboards) { | 948 for (const auto& keyboard : keyboards) { |
| 949 if (keyboard.id == device_id) { | 949 if (keyboard.id == device_id) { |
| 950 return KeyboardDeviceAddedInternal( | 950 return KeyboardDeviceAddedInternal( |
| 951 keyboard.id, keyboard.name, keyboard.vendor_id, keyboard.product_id); | 951 keyboard.id, keyboard.name, keyboard.vendor_id, keyboard.product_id); |
| 952 } | 952 } |
| 953 } | 953 } |
| 954 return kDeviceUnknown; | 954 return kDeviceUnknown; |
| 955 } | 955 } |
| 956 | 956 |
| 957 } // namespace chromeos | 957 } // namespace chromeos |
| OLD | NEW |