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 26 matching lines...) Expand all Loading... |
37 } | 37 } |
38 | 38 |
39 namespace gfx { | 39 namespace gfx { |
40 class Insets; | 40 class Insets; |
41 } | 41 } |
42 | 42 |
43 namespace ash { | 43 namespace ash { |
44 class AshWindowTreeHost; | 44 class AshWindowTreeHost; |
45 struct AshWindowTreeHostInitParams; | 45 struct AshWindowTreeHostInitParams; |
46 class CursorWindowController; | 46 class CursorWindowController; |
47 class DisplayInfo; | |
48 class DisplayManager; | 47 class DisplayManager; |
49 class FocusActivationStore; | 48 class FocusActivationStore; |
50 class InputMethodEventHandler; | 49 class InputMethodEventHandler; |
51 class MirrorWindowController; | 50 class MirrorWindowController; |
52 class RootWindowController; | 51 class RootWindowController; |
53 | 52 |
54 // WindowTreeHostManager owns and maintains RootWindows for each attached | 53 // WindowTreeHostManager owns and maintains RootWindows for each attached |
55 // display, keeping them in sync with display configuration changes. | 54 // display, keeping them in sync with display configuration changes. |
56 class ASH_EXPORT WindowTreeHostManager | 55 class ASH_EXPORT WindowTreeHostManager |
57 : public display::DisplayObserver, | 56 : public display::DisplayObserver, |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 int64_t cursor_display_id_for_restore_; | 219 int64_t cursor_display_id_for_restore_; |
221 | 220 |
222 base::WeakPtrFactory<WindowTreeHostManager> weak_ptr_factory_; | 221 base::WeakPtrFactory<WindowTreeHostManager> weak_ptr_factory_; |
223 | 222 |
224 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostManager); | 223 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostManager); |
225 }; | 224 }; |
226 | 225 |
227 } // namespace ash | 226 } // namespace ash |
228 | 227 |
229 #endif // ASH_DISPLAY_DISPLAY_CONTROLLER_H_ | 228 #endif // ASH_DISPLAY_DISPLAY_CONTROLLER_H_ |
OLD | NEW |