| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 #include <X11/extensions/shape.h> | 10 #include <X11/extensions/shape.h> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 class ImageSkia; | 29 class ImageSkia; |
| 30 class ImageSkiaRep; | 30 class ImageSkiaRep; |
| 31 } | 31 } |
| 32 | 32 |
| 33 namespace ui { | 33 namespace ui { |
| 34 class EventHandler; | 34 class EventHandler; |
| 35 } | 35 } |
| 36 | 36 |
| 37 namespace views { | 37 namespace views { |
| 38 class DesktopDragDropClientAuraX11; | 38 class DesktopDragDropClientAuraX11; |
| 39 class DesktopDispatcherClient; | |
| 40 class DesktopWindowTreeHostObserverX11; | 39 class DesktopWindowTreeHostObserverX11; |
| 41 class X11DesktopWindowMoveClient; | 40 class X11DesktopWindowMoveClient; |
| 42 class X11WindowEventFilter; | 41 class X11WindowEventFilter; |
| 43 | 42 |
| 44 class VIEWS_EXPORT DesktopWindowTreeHostX11 | 43 class VIEWS_EXPORT DesktopWindowTreeHostX11 |
| 45 : public DesktopWindowTreeHost, | 44 : public DesktopWindowTreeHost, |
| 46 public aura::WindowTreeHost, | 45 public aura::WindowTreeHost, |
| 47 public ui::PlatformEventDispatcher { | 46 public ui::PlatformEventDispatcher { |
| 48 public: | 47 public: |
| 49 DesktopWindowTreeHostX11( | 48 DesktopWindowTreeHostX11( |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 base::CancelableCallback<void()> delayed_resize_task_; | 349 base::CancelableCallback<void()> delayed_resize_task_; |
| 351 | 350 |
| 352 base::WeakPtrFactory<DesktopWindowTreeHostX11> close_widget_factory_; | 351 base::WeakPtrFactory<DesktopWindowTreeHostX11> close_widget_factory_; |
| 353 | 352 |
| 354 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11); | 353 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11); |
| 355 }; | 354 }; |
| 356 | 355 |
| 357 } // namespace views | 356 } // namespace views |
| 358 | 357 |
| 359 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ | 358 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ |
| OLD | NEW |