| 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" | |
| 19 #include "mojo/public/cpp/bindings/binding.h" | 18 #include "mojo/public/cpp/bindings/binding.h" |
| 20 #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" |
| 21 #include "services/ui/public/interfaces/window_tree.mojom.h" | 20 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 22 #include "services/ui/ws/display.h" | 21 #include "services/ui/ws/display.h" |
| 23 #include "services/ui/ws/gpu_host_delegate.h" | 22 #include "services/ui/ws/gpu_host_delegate.h" |
| 24 #include "services/ui/ws/ids.h" | 23 #include "services/ui/ws/ids.h" |
| 25 #include "services/ui/ws/operation.h" | 24 #include "services/ui/ws/operation.h" |
| 26 #include "services/ui/ws/server_window_delegate.h" | 25 #include "services/ui/ws/server_window_delegate.h" |
| 27 #include "services/ui/ws/server_window_observer.h" | 26 #include "services/ui/ws/server_window_observer.h" |
| 28 #include "services/ui/ws/user_display_manager_delegate.h" | 27 #include "services/ui/ws/user_display_manager_delegate.h" |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 // State for rendering into a Surface. | 380 // State for rendering into a Surface. |
| 382 cc::mojom::DisplayCompositorPtr display_compositor_; | 381 cc::mojom::DisplayCompositorPtr display_compositor_; |
| 383 | 382 |
| 384 DISALLOW_COPY_AND_ASSIGN(WindowServer); | 383 DISALLOW_COPY_AND_ASSIGN(WindowServer); |
| 385 }; | 384 }; |
| 386 | 385 |
| 387 } // namespace ws | 386 } // namespace ws |
| 388 } // namespace ui | 387 } // namespace ui |
| 389 | 388 |
| 390 #endif // SERVICES_UI_WS_WINDOW_SERVER_H_ | 389 #endif // SERVICES_UI_WS_WINDOW_SERVER_H_ |
| OLD | NEW |