| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_MUS_WS_DISPLAY_H_ | 5 #ifndef SERVICES_UI_WS_DISPLAY_H_ |
| 6 #define COMPONENTS_MUS_WS_DISPLAY_H_ | 6 #define SERVICES_UI_WS_DISPLAY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <queue> | 12 #include <queue> |
| 13 #include <set> | 13 #include <set> |
| 14 | 14 |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "components/mus/common/types.h" | 17 #include "services/ui/common/types.h" |
| 18 #include "components/mus/public/interfaces/window_manager_constants.mojom.h" | 18 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" |
| 19 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 19 #include "services/ui/public/interfaces/window_tree_host.mojom.h" |
| 20 #include "components/mus/ws/focus_controller_delegate.h" | 20 #include "services/ui/ws/focus_controller_delegate.h" |
| 21 #include "components/mus/ws/focus_controller_observer.h" | 21 #include "services/ui/ws/focus_controller_observer.h" |
| 22 #include "components/mus/ws/platform_display.h" | 22 #include "services/ui/ws/platform_display.h" |
| 23 #include "components/mus/ws/server_window.h" | 23 #include "services/ui/ws/server_window.h" |
| 24 #include "components/mus/ws/server_window_observer.h" | 24 #include "services/ui/ws/server_window_observer.h" |
| 25 #include "components/mus/ws/server_window_tracker.h" | 25 #include "services/ui/ws/server_window_tracker.h" |
| 26 #include "components/mus/ws/user_id_tracker_observer.h" | 26 #include "services/ui/ws/user_id_tracker_observer.h" |
| 27 #include "components/mus/ws/window_manager_window_tree_factory_set_observer.h" | 27 #include "services/ui/ws/window_manager_window_tree_factory_set_observer.h" |
| 28 | 28 |
| 29 namespace mus { | 29 namespace mus { |
| 30 namespace ws { | 30 namespace ws { |
| 31 | 31 |
| 32 class DisplayBinding; | 32 class DisplayBinding; |
| 33 class DisplayManager; | 33 class DisplayManager; |
| 34 class FocusController; | 34 class FocusController; |
| 35 struct PlatformDisplayInitParams; | 35 struct PlatformDisplayInitParams; |
| 36 class WindowManagerDisplayRoot; | 36 class WindowManagerDisplayRoot; |
| 37 class WindowServer; | 37 class WindowServer; |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 std::set<ServerWindow*> windows_needing_frame_destruction_; | 214 std::set<ServerWindow*> windows_needing_frame_destruction_; |
| 215 | 215 |
| 216 WindowManagerDisplayRootMap window_manager_display_root_map_; | 216 WindowManagerDisplayRootMap window_manager_display_root_map_; |
| 217 | 217 |
| 218 DISALLOW_COPY_AND_ASSIGN(Display); | 218 DISALLOW_COPY_AND_ASSIGN(Display); |
| 219 }; | 219 }; |
| 220 | 220 |
| 221 } // namespace ws | 221 } // namespace ws |
| 222 } // namespace mus | 222 } // namespace mus |
| 223 | 223 |
| 224 #endif // COMPONENTS_MUS_WS_DISPLAY_H_ | 224 #endif // SERVICES_UI_WS_DISPLAY_H_ |
| OLD | NEW |