| 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 namespace ui { | 34 namespace ui { |
| 35 class EventHandler; | 35 class EventHandler; |
| 36 class XScopedEventSelector; | 36 class XScopedEventSelector; |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace views { | 39 namespace views { |
| 40 class DesktopDragDropClientAuraX11; | 40 class DesktopDragDropClientAuraX11; |
| 41 class DesktopWindowTreeHostObserverX11; | 41 class DesktopWindowTreeHostObserverX11; |
| 42 class X11DesktopWindowMoveClient; | 42 class X11DesktopWindowMoveClient; |
| 43 class X11WindowEventFilter; | |
| 44 | 43 |
| 45 class VIEWS_EXPORT DesktopWindowTreeHostX11 | 44 class VIEWS_EXPORT DesktopWindowTreeHostX11 |
| 46 : public DesktopWindowTreeHost, | 45 : public DesktopWindowTreeHost, |
| 47 public aura::WindowTreeHost, | 46 public aura::WindowTreeHost, |
| 48 public ui::PlatformEventDispatcher { | 47 public ui::PlatformEventDispatcher { |
| 49 public: | 48 public: |
| 50 DesktopWindowTreeHostX11( | 49 DesktopWindowTreeHostX11( |
| 51 internal::NativeWidgetDelegate* native_widget_delegate, | 50 internal::NativeWidgetDelegate* native_widget_delegate, |
| 52 DesktopNativeWidgetAura* desktop_native_widget_aura); | 51 DesktopNativeWidgetAura* desktop_native_widget_aura); |
| 53 ~DesktopWindowTreeHostX11() override; | 52 ~DesktopWindowTreeHostX11() override; |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 | 426 |
| 428 base::WeakPtrFactory<DesktopWindowTreeHostX11> close_widget_factory_; | 427 base::WeakPtrFactory<DesktopWindowTreeHostX11> close_widget_factory_; |
| 429 base::WeakPtrFactory<DesktopWindowTreeHostX11> weak_factory_; | 428 base::WeakPtrFactory<DesktopWindowTreeHostX11> weak_factory_; |
| 430 | 429 |
| 431 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11); | 430 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11); |
| 432 }; | 431 }; |
| 433 | 432 |
| 434 } // namespace views | 433 } // namespace views |
| 435 | 434 |
| 436 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ | 435 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ |
| OLD | NEW |