| 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/root_window_host_x11.h" | 5 #include "ui/aura/root_window_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> |
| 11 #include <X11/extensions/Xrandr.h> | 11 #include <X11/extensions/Xrandr.h> |
| 12 #include <X11/Xatom.h> | 12 #include <X11/Xatom.h> |
| 13 #include <X11/Xcursor/Xcursor.h> | 13 #include <X11/Xcursor/Xcursor.h> |
| 14 #include <X11/Xlib.h> | 14 #include <X11/Xlib.h> |
| 15 | 15 |
| 16 #include <algorithm> | 16 #include <algorithm> |
| 17 #include <limits> | 17 #include <limits> |
| 18 #include <string> | 18 #include <string> |
| 19 | 19 |
| 20 #include "base/basictypes.h" | 20 #include "base/basictypes.h" |
| 21 #include "base/command_line.h" | 21 #include "base/command_line.h" |
| 22 #include "base/debug/trace_event.h" | 22 #include "base/debug/trace_event.h" |
| 23 #include "base/message_loop/message_loop.h" | 23 #include "base/message_loop/message_loop.h" |
| 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/capture_client.h" | |
| 31 #include "ui/aura/client/cursor_client.h" | 30 #include "ui/aura/client/cursor_client.h" |
| 32 #include "ui/aura/client/screen_position_client.h" | 31 #include "ui/aura/client/screen_position_client.h" |
| 33 #include "ui/aura/client/user_action_client.h" | 32 #include "ui/aura/client/user_action_client.h" |
| 34 #include "ui/aura/env.h" | 33 #include "ui/aura/env.h" |
| 35 #include "ui/aura/root_window.h" | 34 #include "ui/aura/root_window.h" |
| 36 #include "ui/base/cursor/cursor.h" | 35 #include "ui/base/cursor/cursor.h" |
| 37 #include "ui/base/ui_base_switches.h" | 36 #include "ui/base/ui_base_switches.h" |
| 38 #include "ui/base/view_prop.h" | 37 #include "ui/base/view_prop.h" |
| 39 #include "ui/base/x/x11_util.h" | 38 #include "ui/base/x/x11_util.h" |
| 40 #include "ui/compositor/dip_util.h" | 39 #include "ui/compositor/dip_util.h" |
| (...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 } | 1095 } |
| 1097 | 1096 |
| 1098 namespace test { | 1097 namespace test { |
| 1099 | 1098 |
| 1100 void SetUseOverrideRedirectWindowByDefault(bool override_redirect) { | 1099 void SetUseOverrideRedirectWindowByDefault(bool override_redirect) { |
| 1101 default_override_redirect = override_redirect; | 1100 default_override_redirect = override_redirect; |
| 1102 } | 1101 } |
| 1103 | 1102 |
| 1104 } // namespace test | 1103 } // namespace test |
| 1105 } // namespace aura | 1104 } // namespace aura |
| OLD | NEW |