| 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 SERVICES_UI_WS_WINDOW_MANAGER_STATE_H_ | 5 #ifndef SERVICES_UI_WS_WINDOW_MANAGER_STATE_H_ |
| 6 #define SERVICES_UI_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 #include <queue> | 11 #include <queue> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "base/timer/timer.h" | 15 #include "base/timer/timer.h" |
| 16 #include "services/ui/public/interfaces/display.mojom.h" | 16 #include "services/ui/public/interfaces/display_manager.mojom.h" |
| 17 #include "services/ui/ws/event_dispatcher.h" | 17 #include "services/ui/ws/event_dispatcher.h" |
| 18 #include "services/ui/ws/event_dispatcher_delegate.h" | 18 #include "services/ui/ws/event_dispatcher_delegate.h" |
| 19 #include "services/ui/ws/server_window_observer.h" | 19 #include "services/ui/ws/server_window_observer.h" |
| 20 #include "services/ui/ws/user_id.h" | 20 #include "services/ui/ws/user_id.h" |
| 21 #include "services/ui/ws/window_server.h" | 21 #include "services/ui/ws/window_server.h" |
| 22 | 22 |
| 23 namespace ui { | 23 namespace ui { |
| 24 namespace ws { | 24 namespace ws { |
| 25 | 25 |
| 26 class DisplayManager; | 26 class DisplayManager; |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 | 267 |
| 268 base::WeakPtrFactory<WindowManagerState> weak_factory_; | 268 base::WeakPtrFactory<WindowManagerState> weak_factory_; |
| 269 | 269 |
| 270 DISALLOW_COPY_AND_ASSIGN(WindowManagerState); | 270 DISALLOW_COPY_AND_ASSIGN(WindowManagerState); |
| 271 }; | 271 }; |
| 272 | 272 |
| 273 } // namespace ws | 273 } // namespace ws |
| 274 } // namespace ui | 274 } // namespace ui |
| 275 | 275 |
| 276 #endif // SERVICES_UI_WS_WINDOW_MANAGER_STATE_H_ | 276 #endif // SERVICES_UI_WS_WINDOW_MANAGER_STATE_H_ |
| OLD | NEW |