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 ASH_DISPLAY_DISPLAY_CONTROLLER_H_ | 5 #ifndef ASH_DISPLAY_DISPLAY_CONTROLLER_H_ |
6 #define ASH_DISPLAY_DISPLAY_CONTROLLER_H_ | 6 #define ASH_DISPLAY_DISPLAY_CONTROLLER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 22 matching lines...) Expand all Loading... | |
33 namespace base { | 33 namespace base { |
34 class Value; | 34 class Value; |
35 template <typename T> | 35 template <typename T> |
36 class JSONValueConverter; | 36 class JSONValueConverter; |
37 } | 37 } |
38 | 38 |
39 namespace gfx { | 39 namespace gfx { |
40 class Insets; | 40 class Insets; |
41 } | 41 } |
42 | 42 |
43 namespace ui { | |
44 class ManagedDisplayInfo; | |
45 } | |
oshima
2016/08/26 21:47:53
Remove this?
rjkroege
2016/08/29 22:21:59
Done.
| |
46 | |
43 namespace ash { | 47 namespace ash { |
44 class AshWindowTreeHost; | 48 class AshWindowTreeHost; |
45 struct AshWindowTreeHostInitParams; | 49 struct AshWindowTreeHostInitParams; |
46 class CursorWindowController; | 50 class CursorWindowController; |
47 class DisplayInfo; | 51 |
48 class DisplayManager; | 52 class DisplayManager; |
49 class FocusActivationStore; | 53 class FocusActivationStore; |
50 class InputMethodEventHandler; | 54 class InputMethodEventHandler; |
51 class MirrorWindowController; | 55 class MirrorWindowController; |
52 class RootWindowController; | 56 class RootWindowController; |
53 | 57 |
54 // WindowTreeHostManager owns and maintains RootWindows for each attached | 58 // WindowTreeHostManager owns and maintains RootWindows for each attached |
55 // display, keeping them in sync with display configuration changes. | 59 // display, keeping them in sync with display configuration changes. |
56 class ASH_EXPORT WindowTreeHostManager | 60 class ASH_EXPORT WindowTreeHostManager |
57 : public display::DisplayObserver, | 61 : public display::DisplayObserver, |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
220 int64_t cursor_display_id_for_restore_; | 224 int64_t cursor_display_id_for_restore_; |
221 | 225 |
222 base::WeakPtrFactory<WindowTreeHostManager> weak_ptr_factory_; | 226 base::WeakPtrFactory<WindowTreeHostManager> weak_ptr_factory_; |
223 | 227 |
224 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostManager); | 228 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostManager); |
225 }; | 229 }; |
226 | 230 |
227 } // namespace ash | 231 } // namespace ash |
228 | 232 |
229 #endif // ASH_DISPLAY_DISPLAY_CONTROLLER_H_ | 233 #endif // ASH_DISPLAY_DISPLAY_CONTROLLER_H_ |
OLD | NEW |