| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_ | 5 #ifndef ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_ |
| 6 #define ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_ | 6 #define ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| 11 #include "ash/host/ash_window_tree_host.h" | 11 #include "ash/host/ash_window_tree_host.h" |
| 12 #include "ash/host/transformer_helper.h" | 12 #include "ash/host/transformer_helper.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "ui/aura/env_observer.h" | 14 #include "ui/aura/env_observer.h" |
| 15 #include "ui/aura/window_tree_host_x11.h" | 15 #include "ui/aura/window_tree_host_x11.h" |
| 16 | 16 |
| 17 namespace ash { | 17 namespace ash { |
| 18 class RootWindowTransformer; | 18 class RootWindowTransformer; |
| 19 class MouseCursorEventFilter; | |
| 20 | 19 |
| 21 class ASH_EXPORT AshWindowTreeHostX11 : public AshWindowTreeHost, | 20 class ASH_EXPORT AshWindowTreeHostX11 : public AshWindowTreeHost, |
| 22 public aura::WindowTreeHostX11, | 21 public aura::WindowTreeHostX11, |
| 23 public aura::EnvObserver { | 22 public aura::EnvObserver { |
| 24 public: | 23 public: |
| 25 explicit AshWindowTreeHostX11(const gfx::Rect& initial_bounds); | 24 explicit AshWindowTreeHostX11(const gfx::Rect& initial_bounds); |
| 26 ~AshWindowTreeHostX11() override; | 25 ~AshWindowTreeHostX11() override; |
| 27 | 26 |
| 28 private: | 27 private: |
| 29 // AshWindowTreeHost: | 28 // AshWindowTreeHost: |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 std::unique_ptr<XID[]> pointer_barriers_; | 65 std::unique_ptr<XID[]> pointer_barriers_; |
| 67 | 66 |
| 68 TransformerHelper transformer_helper_; | 67 TransformerHelper transformer_helper_; |
| 69 | 68 |
| 70 DISALLOW_COPY_AND_ASSIGN(AshWindowTreeHostX11); | 69 DISALLOW_COPY_AND_ASSIGN(AshWindowTreeHostX11); |
| 71 }; | 70 }; |
| 72 | 71 |
| 73 } // namespace ash | 72 } // namespace ash |
| 74 | 73 |
| 75 #endif // ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_ | 74 #endif // ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_ |
| OLD | NEW |