OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_WINDOW_MANAGER_STATE_H_ | 5 #ifndef SERVICES_UI_WS_WINDOW_MANAGER_STATE_H_ |
6 #define COMPONENTS_MUS_WS_WINDOW_MANAGER_STATE_H_ | 6 #define SERVICES_UI_WS_WINDOW_MANAGER_STATE_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 | 11 |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
14 #include "components/mus/public/interfaces/display.mojom.h" | 14 #include "services/ui/public/interfaces/display.mojom.h" |
15 #include "components/mus/ws/event_dispatcher.h" | 15 #include "services/ui/ws/event_dispatcher.h" |
16 #include "components/mus/ws/event_dispatcher_delegate.h" | 16 #include "services/ui/ws/event_dispatcher_delegate.h" |
17 #include "components/mus/ws/user_id.h" | 17 #include "services/ui/ws/user_id.h" |
18 #include "components/mus/ws/window_server.h" | 18 #include "services/ui/ws/window_server.h" |
19 | 19 |
20 namespace mus { | 20 namespace mus { |
21 namespace ws { | 21 namespace ws { |
22 | 22 |
23 class DisplayManager; | 23 class DisplayManager; |
24 class WindowTree; | 24 class WindowTree; |
25 | 25 |
26 namespace test { | 26 namespace test { |
27 class WindowManagerStateTestApi; | 27 class WindowManagerStateTestApi; |
28 } | 28 } |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 PlatformDisplay* platform_display_with_capture_ = nullptr; | 173 PlatformDisplay* platform_display_with_capture_ = nullptr; |
174 | 174 |
175 base::WeakPtrFactory<WindowManagerState> weak_factory_; | 175 base::WeakPtrFactory<WindowManagerState> weak_factory_; |
176 | 176 |
177 DISALLOW_COPY_AND_ASSIGN(WindowManagerState); | 177 DISALLOW_COPY_AND_ASSIGN(WindowManagerState); |
178 }; | 178 }; |
179 | 179 |
180 } // namespace ws | 180 } // namespace ws |
181 } // namespace mus | 181 } // namespace mus |
182 | 182 |
183 #endif // COMPONENTS_MUS_WS_WINDOW_MANAGER_STATE_H_ | 183 #endif // SERVICES_UI_WS_WINDOW_MANAGER_STATE_H_ |
OLD | NEW |