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/views/widget/desktop_aura/desktop_window_tree_host_x11.h" | 5 #include "ui/views/widget/desktop_aura/desktop_window_tree_host_x11.h" |
6 | 6 |
7 #include <X11/extensions/shape.h> | 7 #include <X11/extensions/shape.h> |
8 #include <X11/extensions/XInput2.h> | 8 #include <X11/extensions/XInput2.h> |
9 #include <X11/Xatom.h> | 9 #include <X11/Xatom.h> |
10 #include <X11/Xregion.h> | 10 #include <X11/Xregion.h> |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "ui/events/platform/platform_event_source.h" | 32 #include "ui/events/platform/platform_event_source.h" |
33 #include "ui/events/platform/x11/x11_event_source.h" | 33 #include "ui/events/platform/x11/x11_event_source.h" |
34 #include "ui/gfx/display.h" | 34 #include "ui/gfx/display.h" |
35 #include "ui/gfx/geometry/insets.h" | 35 #include "ui/gfx/geometry/insets.h" |
36 #include "ui/gfx/geometry/size_conversions.h" | 36 #include "ui/gfx/geometry/size_conversions.h" |
37 #include "ui/gfx/image/image_skia.h" | 37 #include "ui/gfx/image/image_skia.h" |
38 #include "ui/gfx/image/image_skia_rep.h" | 38 #include "ui/gfx/image/image_skia_rep.h" |
39 #include "ui/gfx/path.h" | 39 #include "ui/gfx/path.h" |
40 #include "ui/gfx/path_x11.h" | 40 #include "ui/gfx/path_x11.h" |
41 #include "ui/gfx/screen.h" | 41 #include "ui/gfx/screen.h" |
| 42 #include "ui/gfx/x/x11_switches.h" |
42 #include "ui/native_theme/native_theme.h" | 43 #include "ui/native_theme/native_theme.h" |
43 #include "ui/views/corewm/tooltip_aura.h" | 44 #include "ui/views/corewm/tooltip_aura.h" |
44 #include "ui/views/linux_ui/linux_ui.h" | 45 #include "ui/views/linux_ui/linux_ui.h" |
45 #include "ui/views/views_delegate.h" | 46 #include "ui/views/views_delegate.h" |
46 #include "ui/views/views_switches.h" | |
47 #include "ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11.h" | 47 #include "ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11.h" |
48 #include "ui/views/widget/desktop_aura/desktop_native_cursor_manager.h" | 48 #include "ui/views/widget/desktop_aura/desktop_native_cursor_manager.h" |
49 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" | 49 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" |
50 #include "ui/views/widget/desktop_aura/desktop_window_tree_host_observer_x11.h" | 50 #include "ui/views/widget/desktop_aura/desktop_window_tree_host_observer_x11.h" |
51 #include "ui/views/widget/desktop_aura/x11_desktop_handler.h" | 51 #include "ui/views/widget/desktop_aura/x11_desktop_handler.h" |
52 #include "ui/views/widget/desktop_aura/x11_desktop_window_move_client.h" | 52 #include "ui/views/widget/desktop_aura/x11_desktop_window_move_client.h" |
53 #include "ui/views/widget/desktop_aura/x11_pointer_grab.h" | 53 #include "ui/views/widget/desktop_aura/x11_pointer_grab.h" |
54 #include "ui/views/widget/desktop_aura/x11_window_event_filter.h" | 54 #include "ui/views/widget/desktop_aura/x11_window_event_filter.h" |
55 #include "ui/wm/core/compound_event_filter.h" | 55 #include "ui/wm/core/compound_event_filter.h" |
56 #include "ui/wm/core/window_util.h" | 56 #include "ui/wm/core/window_util.h" |
(...skipping 2008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2065 if (linux_ui) { | 2065 if (linux_ui) { |
2066 ui::NativeTheme* native_theme = linux_ui->GetNativeTheme(window); | 2066 ui::NativeTheme* native_theme = linux_ui->GetNativeTheme(window); |
2067 if (native_theme) | 2067 if (native_theme) |
2068 return native_theme; | 2068 return native_theme; |
2069 } | 2069 } |
2070 | 2070 |
2071 return ui::NativeTheme::instance(); | 2071 return ui::NativeTheme::instance(); |
2072 } | 2072 } |
2073 | 2073 |
2074 } // namespace views | 2074 } // namespace views |
OLD | NEW |