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 10 matching lines...) Expand all Loading... |
21 #include "ui/gfx/geometry/size.h" | 21 #include "ui/gfx/geometry/size.h" |
22 #include "ui/gfx/native_widget_types.h" | 22 #include "ui/gfx/native_widget_types.h" |
23 | 23 |
24 namespace aura { | 24 namespace aura { |
25 class Window; | 25 class Window; |
26 namespace client { | 26 namespace client { |
27 class ScreenPositionClient; | 27 class ScreenPositionClient; |
28 } | 28 } |
29 } | 29 } |
30 | 30 |
31 namespace gfx { | 31 namespace display { |
32 class Display; | 32 class Display; |
33 } | 33 } |
34 | 34 |
35 namespace display { | |
36 using Display = gfx::Display; | |
37 } | |
38 | |
39 namespace ui { | 35 namespace ui { |
40 class Reflector; | 36 class Reflector; |
41 } | 37 } |
42 | 38 |
43 namespace ash { | 39 namespace ash { |
44 class AshWindowTreeHost; | 40 class AshWindowTreeHost; |
45 class DisplayInfo; | 41 class DisplayInfo; |
46 class RootWindowTransformer; | 42 class RootWindowTransformer; |
47 | 43 |
48 namespace test{ | 44 namespace test{ |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 std::unique_ptr<aura::client::ScreenPositionClient> screen_position_client_; | 101 std::unique_ptr<aura::client::ScreenPositionClient> screen_position_client_; |
106 | 102 |
107 std::unique_ptr<ui::Reflector> reflector_; | 103 std::unique_ptr<ui::Reflector> reflector_; |
108 | 104 |
109 DISALLOW_COPY_AND_ASSIGN(MirrorWindowController); | 105 DISALLOW_COPY_AND_ASSIGN(MirrorWindowController); |
110 }; | 106 }; |
111 | 107 |
112 } // namespace ash | 108 } // namespace ash |
113 | 109 |
114 #endif // ASH_DISPLAY_MIRROR_WINDOW_CONTROLLER_H_ | 110 #endif // ASH_DISPLAY_MIRROR_WINDOW_CONTROLLER_H_ |
OLD | NEW |