OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ui/aura/window_tree_host_x11.h" | 5 #include "ui/aura/window_tree_host_x11.h" |
6 | 6 |
7 #include <strings.h> | 7 #include <strings.h> |
8 #include <X11/cursorfont.h> | 8 #include <X11/cursorfont.h> |
9 #include <X11/extensions/Xfixes.h> | 9 #include <X11/extensions/Xfixes.h> |
10 #include <X11/extensions/XInput2.h> | 10 #include <X11/extensions/XInput2.h> |
(...skipping 13 matching lines...) Expand all Loading... |
24 #include "base/message_loop/message_pump_x11.h" | 24 #include "base/message_loop/message_pump_x11.h" |
25 #include "base/stl_util.h" | 25 #include "base/stl_util.h" |
26 #include "base/strings/string_number_conversions.h" | 26 #include "base/strings/string_number_conversions.h" |
27 #include "base/strings/string_util.h" | 27 #include "base/strings/string_util.h" |
28 #include "base/strings/stringprintf.h" | 28 #include "base/strings/stringprintf.h" |
29 #include "base/sys_info.h" | 29 #include "base/sys_info.h" |
30 #include "ui/aura/client/cursor_client.h" | 30 #include "ui/aura/client/cursor_client.h" |
31 #include "ui/aura/client/screen_position_client.h" | 31 #include "ui/aura/client/screen_position_client.h" |
32 #include "ui/aura/client/user_action_client.h" | 32 #include "ui/aura/client/user_action_client.h" |
33 #include "ui/aura/env.h" | 33 #include "ui/aura/env.h" |
34 #include "ui/aura/root_window.h" | 34 #include "ui/aura/window_event_dispatcher.h" |
35 #include "ui/base/cursor/cursor.h" | 35 #include "ui/base/cursor/cursor.h" |
36 #include "ui/base/ui_base_switches.h" | 36 #include "ui/base/ui_base_switches.h" |
37 #include "ui/base/view_prop.h" | 37 #include "ui/base/view_prop.h" |
38 #include "ui/base/x/x11_util.h" | 38 #include "ui/base/x/x11_util.h" |
39 #include "ui/compositor/dip_util.h" | 39 #include "ui/compositor/dip_util.h" |
40 #include "ui/compositor/layer.h" | 40 #include "ui/compositor/layer.h" |
41 #include "ui/events/event.h" | 41 #include "ui/events/event.h" |
42 #include "ui/events/event_utils.h" | 42 #include "ui/events/event_utils.h" |
43 #include "ui/events/keycodes/keyboard_codes.h" | 43 #include "ui/events/keycodes/keyboard_codes.h" |
44 #include "ui/events/x/device_data_manager.h" | 44 #include "ui/events/x/device_data_manager.h" |
(...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
998 } | 998 } |
999 | 999 |
1000 namespace test { | 1000 namespace test { |
1001 | 1001 |
1002 void SetUseOverrideRedirectWindowByDefault(bool override_redirect) { | 1002 void SetUseOverrideRedirectWindowByDefault(bool override_redirect) { |
1003 default_override_redirect = override_redirect; | 1003 default_override_redirect = override_redirect; |
1004 } | 1004 } |
1005 | 1005 |
1006 } // namespace test | 1006 } // namespace test |
1007 } // namespace aura | 1007 } // namespace aura |
OLD | NEW |