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 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ |
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ |
7 | 7 |
8 #include <X11/extensions/shape.h> | 8 #include <X11/extensions/shape.h> |
9 #include <X11/Xlib.h> | 9 #include <X11/Xlib.h> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/cancelable_callback.h" | 12 #include "base/cancelable_callback.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
15 #include "ui/aura/window_tree_host.h" | 15 #include "ui/aura/window_tree_host.h" |
16 #include "ui/base/cursor/cursor_loader_x11.h" | 16 #include "ui/base/cursor/cursor_loader_x11.h" |
17 #include "ui/events/event_source.h" | 17 #include "ui/events/event_source.h" |
18 #include "ui/events/platform/platform_event_dispatcher.h" | 18 #include "ui/events/platform/platform_event_dispatcher.h" |
19 #include "ui/gfx/geometry/insets.h" | 19 #include "ui/gfx/geometry/insets.h" |
20 #include "ui/gfx/geometry/rect.h" | 20 #include "ui/gfx/geometry/rect.h" |
21 #include "ui/gfx/size.h" | 21 #include "ui/gfx/geometry/size.h" |
22 #include "ui/gfx/x/x11_atom_cache.h" | 22 #include "ui/gfx/x/x11_atom_cache.h" |
23 #include "ui/views/views_export.h" | 23 #include "ui/views/views_export.h" |
24 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" | 24 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" |
25 | 25 |
26 namespace gfx { | 26 namespace gfx { |
27 class ImageSkia; | 27 class ImageSkia; |
28 class ImageSkiaRep; | 28 class ImageSkiaRep; |
29 } | 29 } |
30 | 30 |
31 namespace ui { | 31 namespace ui { |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 base::CancelableCallback<void()> delayed_resize_task_; | 336 base::CancelableCallback<void()> delayed_resize_task_; |
337 | 337 |
338 base::WeakPtrFactory<DesktopWindowTreeHostX11> close_widget_factory_; | 338 base::WeakPtrFactory<DesktopWindowTreeHostX11> close_widget_factory_; |
339 | 339 |
340 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11); | 340 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11); |
341 }; | 341 }; |
342 | 342 |
343 } // namespace views | 343 } // namespace views |
344 | 344 |
345 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ | 345 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ |
OLD | NEW |