| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_DISPLAY_MIRROR_WINDOW_CONTROLLER_H_ | 5 #ifndef ASH_DISPLAY_MIRROR_WINDOW_CONTROLLER_H_ |
| 6 #define ASH_DISPLAY_MIRROR_WINDOW_CONTROLLER_H_ | 6 #define ASH_DISPLAY_MIRROR_WINDOW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 class Display; | 32 class Display; |
| 33 class ManagedDisplayInfo; | 33 class ManagedDisplayInfo; |
| 34 } | 34 } |
| 35 | 35 |
| 36 namespace ui { | 36 namespace ui { |
| 37 class Reflector; | 37 class Reflector; |
| 38 } | 38 } |
| 39 | 39 |
| 40 namespace ash { | 40 namespace ash { |
| 41 class AshWindowTreeHost; | 41 class AshWindowTreeHost; |
| 42 class RootWindowTransformer; | |
| 43 | 42 |
| 44 namespace test { | 43 namespace test { |
| 45 class MirrorWindowTestApi; | 44 class MirrorWindowTestApi; |
| 46 } | 45 } |
| 47 | 46 |
| 48 // An object that copies the content of the primary root window to a | 47 // An object that copies the content of the primary root window to a |
| 49 // mirror window. This also draws a mouse cursor as the mouse cursor | 48 // mirror window. This also draws a mouse cursor as the mouse cursor |
| 50 // is typically drawn by the window system. | 49 // is typically drawn by the window system. |
| 51 class ASH_EXPORT MirrorWindowController : public aura::WindowTreeHostObserver { | 50 class ASH_EXPORT MirrorWindowController : public aura::WindowTreeHostObserver { |
| 52 public: | 51 public: |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 std::unique_ptr<aura::client::ScreenPositionClient> screen_position_client_; | 101 std::unique_ptr<aura::client::ScreenPositionClient> screen_position_client_; |
| 103 | 102 |
| 104 std::unique_ptr<ui::Reflector> reflector_; | 103 std::unique_ptr<ui::Reflector> reflector_; |
| 105 | 104 |
| 106 DISALLOW_COPY_AND_ASSIGN(MirrorWindowController); | 105 DISALLOW_COPY_AND_ASSIGN(MirrorWindowController); |
| 107 }; | 106 }; |
| 108 | 107 |
| 109 } // namespace ash | 108 } // namespace ash |
| 110 | 109 |
| 111 #endif // ASH_DISPLAY_MIRROR_WINDOW_CONTROLLER_H_ | 110 #endif // ASH_DISPLAY_MIRROR_WINDOW_CONTROLLER_H_ |
| OLD | NEW |