| 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 "cc/ipc/display_compositor.mojom.h" | 17 #include "cc/ipc/display_compositor.mojom.h" |
| 18 #include "mojo/public/cpp/bindings/array.h" | 18 #include "mojo/public/cpp/bindings/array.h" |
| 19 #include "mojo/public/cpp/bindings/binding.h" | 19 #include "mojo/public/cpp/bindings/binding.h" |
| 20 #include "services/ui/public/interfaces/window_manager_window_tree_factory.mojom
.h" | 20 #include "services/ui/public/interfaces/window_manager_window_tree_factory.mojom
.h" |
| 21 #include "services/ui/public/interfaces/window_tree.mojom.h" | 21 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 22 #include "services/ui/surfaces/display_compositor.h" | |
| 23 #include "services/ui/ws/display.h" | 22 #include "services/ui/ws/display.h" |
| 24 #include "services/ui/ws/gpu_service_proxy_delegate.h" | 23 #include "services/ui/ws/gpu_service_proxy_delegate.h" |
| 25 #include "services/ui/ws/ids.h" | 24 #include "services/ui/ws/ids.h" |
| 26 #include "services/ui/ws/operation.h" | 25 #include "services/ui/ws/operation.h" |
| 27 #include "services/ui/ws/server_window_delegate.h" | 26 #include "services/ui/ws/server_window_delegate.h" |
| 28 #include "services/ui/ws/server_window_observer.h" | 27 #include "services/ui/ws/server_window_observer.h" |
| 29 #include "services/ui/ws/user_display_manager_delegate.h" | 28 #include "services/ui/ws/user_display_manager_delegate.h" |
| 30 #include "services/ui/ws/user_id_tracker.h" | 29 #include "services/ui/ws/user_id_tracker.h" |
| 31 #include "services/ui/ws/user_id_tracker_observer.h" | 30 #include "services/ui/ws/user_id_tracker_observer.h" |
| 32 #include "services/ui/ws/window_manager_window_tree_factory_set.h" | 31 #include "services/ui/ws/window_manager_window_tree_factory_set.h" |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 cc::mojom::DisplayCompositorPtr display_compositor_; | 379 cc::mojom::DisplayCompositorPtr display_compositor_; |
| 381 cc::mojom::DisplayCompositorRequest display_compositor_request_; | 380 cc::mojom::DisplayCompositorRequest display_compositor_request_; |
| 382 | 381 |
| 383 DISALLOW_COPY_AND_ASSIGN(WindowServer); | 382 DISALLOW_COPY_AND_ASSIGN(WindowServer); |
| 384 }; | 383 }; |
| 385 | 384 |
| 386 } // namespace ws | 385 } // namespace ws |
| 387 } // namespace ui | 386 } // namespace ui |
| 388 | 387 |
| 389 #endif // SERVICES_UI_WS_WINDOW_SERVER_H_ | 388 #endif // SERVICES_UI_WS_WINDOW_SERVER_H_ |
| OLD | NEW |