| 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 SERVICES_UI_WS_WINDOW_SERVER_H_ | 5 #ifndef SERVICES_UI_WS_WINDOW_SERVER_H_ |
| 6 #define SERVICES_UI_WS_WINDOW_SERVER_H_ | 6 #define SERVICES_UI_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 "base/optional.h" | 16 #include "base/optional.h" |
| 17 #include "mojo/public/cpp/bindings/array.h" | 17 #include "mojo/public/cpp/bindings/array.h" |
| 18 #include "mojo/public/cpp/bindings/binding.h" | 18 #include "mojo/public/cpp/bindings/binding.h" |
| 19 #include "services/ui/public/interfaces/window_manager_window_tree_factory.mojom
.h" | 19 #include "services/ui/public/interfaces/window_manager_window_tree_factory.mojom
.h" |
| 20 #include "services/ui/public/interfaces/window_tree.mojom.h" | 20 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 21 #include "services/ui/public/interfaces/window_tree_host.mojom.h" | |
| 22 #include "services/ui/surfaces/display_compositor.h" | 21 #include "services/ui/surfaces/display_compositor.h" |
| 23 #include "services/ui/surfaces/display_compositor_client.h" | 22 #include "services/ui/surfaces/display_compositor_client.h" |
| 24 #include "services/ui/ws/display.h" | 23 #include "services/ui/ws/display.h" |
| 25 #include "services/ui/ws/gpu_service_proxy_delegate.h" | 24 #include "services/ui/ws/gpu_service_proxy_delegate.h" |
| 26 #include "services/ui/ws/ids.h" | 25 #include "services/ui/ws/ids.h" |
| 27 #include "services/ui/ws/operation.h" | 26 #include "services/ui/ws/operation.h" |
| 28 #include "services/ui/ws/server_window_delegate.h" | 27 #include "services/ui/ws/server_window_delegate.h" |
| 29 #include "services/ui/ws/server_window_observer.h" | 28 #include "services/ui/ws/server_window_observer.h" |
| 30 #include "services/ui/ws/user_display_manager_delegate.h" | 29 #include "services/ui/ws/user_display_manager_delegate.h" |
| 31 #include "services/ui/ws/user_id_tracker.h" | 30 #include "services/ui/ws/user_id_tracker.h" |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 | 390 |
| 392 WindowManagerWindowTreeFactorySet window_manager_window_tree_factory_set_; | 391 WindowManagerWindowTreeFactorySet window_manager_window_tree_factory_set_; |
| 393 | 392 |
| 394 DISALLOW_COPY_AND_ASSIGN(WindowServer); | 393 DISALLOW_COPY_AND_ASSIGN(WindowServer); |
| 395 }; | 394 }; |
| 396 | 395 |
| 397 } // namespace ws | 396 } // namespace ws |
| 398 } // namespace ui | 397 } // namespace ui |
| 399 | 398 |
| 400 #endif // SERVICES_UI_WS_WINDOW_SERVER_H_ | 399 #endif // SERVICES_UI_WS_WINDOW_SERVER_H_ |
| OLD | NEW |