| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SERVER_H_ | 5 #ifndef COMPONENTS_MUS_WS_WINDOW_SERVER_H_ |
| 6 #define COMPONENTS_MUS_WS_WINDOW_SERVER_H_ | 6 #define COMPONENTS_MUS_WS_WINDOW_SERVER_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 <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "components/mus/public/cpp/surfaces/custom_surface_converter.h" |
| 16 #include "components/mus/public/interfaces/window_manager_factory.mojom.h" | 17 #include "components/mus/public/interfaces/window_manager_factory.mojom.h" |
| 17 #include "components/mus/public/interfaces/window_tree.mojom.h" | 18 #include "components/mus/public/interfaces/window_tree.mojom.h" |
| 18 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 19 #include "components/mus/public/interfaces/window_tree_host.mojom.h" |
| 19 #include "components/mus/surfaces/surfaces_state.h" | 20 #include "components/mus/surfaces/surfaces_state.h" |
| 20 #include "components/mus/ws/display.h" | 21 #include "components/mus/ws/display.h" |
| 21 #include "components/mus/ws/display_manager_delegate.h" | 22 #include "components/mus/ws/display_manager_delegate.h" |
| 22 #include "components/mus/ws/ids.h" | 23 #include "components/mus/ws/ids.h" |
| 23 #include "components/mus/ws/operation.h" | 24 #include "components/mus/ws/operation.h" |
| 24 #include "components/mus/ws/server_window_delegate.h" | 25 #include "components/mus/ws/server_window_delegate.h" |
| 25 #include "components/mus/ws/server_window_observer.h" | 26 #include "components/mus/ws/server_window_observer.h" |
| 26 #include "components/mus/ws/user_id_tracker.h" | 27 #include "components/mus/ws/user_id_tracker.h" |
| 27 #include "components/mus/ws/window_manager_factory_registry.h" | 28 #include "components/mus/ws/window_manager_factory_registry.h" |
| 28 #include "mojo/converters/surfaces/custom_surface_converter.h" | |
| 29 #include "mojo/public/cpp/bindings/array.h" | 29 #include "mojo/public/cpp/bindings/array.h" |
| 30 #include "mojo/public/cpp/bindings/binding.h" | 30 #include "mojo/public/cpp/bindings/binding.h" |
| 31 | 31 |
| 32 namespace mus { | 32 namespace mus { |
| 33 namespace ws { | 33 namespace ws { |
| 34 | 34 |
| 35 class AccessPolicy; | 35 class AccessPolicy; |
| 36 class DisplayManager; | 36 class DisplayManager; |
| 37 class ServerWindow; | 37 class ServerWindow; |
| 38 class WindowManagerState; | 38 class WindowManagerState; |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 | 325 |
| 326 WindowManagerFactoryRegistry window_manager_factory_registry_; | 326 WindowManagerFactoryRegistry window_manager_factory_registry_; |
| 327 | 327 |
| 328 DISALLOW_COPY_AND_ASSIGN(WindowServer); | 328 DISALLOW_COPY_AND_ASSIGN(WindowServer); |
| 329 }; | 329 }; |
| 330 | 330 |
| 331 } // namespace ws | 331 } // namespace ws |
| 332 } // namespace mus | 332 } // namespace mus |
| 333 | 333 |
| 334 #endif // COMPONENTS_MUS_WS_WINDOW_SERVER_H_ | 334 #endif // COMPONENTS_MUS_WS_WINDOW_SERVER_H_ |
| OLD | NEW |