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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 // State for rendering into a Surface. | 381 // State for rendering into a Surface. |
383 cc::mojom::DisplayCompositorPtr display_compositor_; | 382 cc::mojom::DisplayCompositorPtr display_compositor_; |
384 | 383 |
385 DISALLOW_COPY_AND_ASSIGN(WindowServer); | 384 DISALLOW_COPY_AND_ASSIGN(WindowServer); |
386 }; | 385 }; |
387 | 386 |
388 } // namespace ws | 387 } // namespace ws |
389 } // namespace ui | 388 } // namespace ui |
390 | 389 |
391 #endif // SERVICES_UI_WS_WINDOW_SERVER_H_ | 390 #endif // SERVICES_UI_WS_WINDOW_SERVER_H_ |
OLD | NEW |