OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_PUBLIC_CPP_WINDOW_TREE_HOST_FACTORY_H_ | 5 #ifndef COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_HOST_FACTORY_H_ |
6 #define COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_HOST_FACTORY_H_ | 6 #define COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_HOST_FACTORY_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "components/mus/public/interfaces/window_manager.mojom.h" | 9 #include "components/mus/public/interfaces/window_manager.mojom.h" |
10 #include "components/mus/public/interfaces/window_tree.mojom.h" | 10 #include "components/mus/public/interfaces/window_tree.mojom.h" |
11 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 11 #include "components/mus/public/interfaces/window_tree_host.mojom.h" |
12 #include "mojo/public/cpp/bindings/binding.h" | 12 #include "mojo/public/cpp/bindings/binding.h" |
13 | 13 |
14 namespace mojo { | 14 namespace mojo { |
15 class ApplicationImpl; | 15 class ApplicationImpl; |
16 } | 16 } |
17 | 17 |
18 namespace mus { | 18 namespace mus { |
19 | 19 |
20 class WindowManagerDelegate; | 20 class WindowManagerDelegate; |
21 class WindowTreeDelegate; | 21 class WindowTreeDelegate; |
22 | 22 |
23 // Uses |factory| to create a new |host|, providing the supplied |host_client| | 23 // Uses |factory| to create a new |host|, providing the supplied |host_client| |
24 // which may be null. |delegate| must not be null. | 24 // which may be null. |delegate| must not be null. |
25 void CreateWindowTreeHost(mojom::WindowTreeHostFactory* factory, | 25 void CreateWindowTreeHost(mojom::WindowTreeHostFactory* factory, |
26 mojom::WindowTreeHostClientPtr host_client, | 26 mojom::WindowTreeHostClientPtr host_client, |
27 WindowTreeDelegate* delegate, | 27 WindowTreeDelegate* delegate, |
28 mojom::WindowTreeHostPtr* host, | 28 mojom::WindowTreeHostPtr* host, |
29 mojom::WindowManagerPtr window_manager, | 29 mojom::WindowManagerDeprecatedPtr window_manager, |
30 WindowManagerDelegate* window_manager_delegate); | 30 WindowManagerDelegate* window_manager_delegate); |
31 | 31 |
32 // Creates a single host with no client by connecting to the window manager | 32 // Creates a single host with no client by connecting to the window manager |
33 // application. Useful only for tests and trivial UIs. | 33 // application. Useful only for tests and trivial UIs. |
34 void CreateSingleWindowTreeHost(mojo::ApplicationImpl* app, | 34 void CreateSingleWindowTreeHost( |
35 mojom::WindowTreeHostClientPtr host_client, | 35 mojo::ApplicationImpl* app, |
36 WindowTreeDelegate* delegate, | 36 mojom::WindowTreeHostClientPtr host_client, |
37 mojom::WindowTreeHostPtr* host, | 37 WindowTreeDelegate* delegate, |
38 mojom::WindowManagerPtr window_manager, | 38 mojom::WindowTreeHostPtr* host, |
39 WindowManagerDelegate* window_manager_delegate); | 39 mojom::WindowManagerDeprecatedPtr window_manager, |
| 40 WindowManagerDelegate* window_manager_delegate); |
40 | 41 |
41 } // namespace mus | 42 } // namespace mus |
42 | 43 |
43 #endif // COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_HOST_FACTORY_H_ | 44 #endif // COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_HOST_FACTORY_H_ |
OLD | NEW |