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_WS_WINDOW_TREE_HOST_CONNECTION_H_ | 5 #ifndef COMPONENTS_MUS_WS_WINDOW_TREE_HOST_CONNECTION_H_ |
6 #define COMPONENTS_MUS_WS_WINDOW_TREE_HOST_CONNECTION_H_ | 6 #define COMPONENTS_MUS_WS_WINDOW_TREE_HOST_CONNECTION_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 10 #include "components/mus/public/interfaces/window_tree_host.mojom.h" |
11 #include "components/mus/ws/window_tree_host_delegate.h" | 11 #include "components/mus/ws/window_tree_host_delegate.h" |
12 #include "components/mus/ws/window_tree_host_impl.h" | 12 #include "components/mus/ws/window_tree_host_impl.h" |
13 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | 13 #include "mojo/public/cpp/bindings/binding.h" |
14 | 14 |
15 namespace mus { | 15 namespace mus { |
16 | 16 |
17 namespace ws { | 17 namespace ws { |
18 | 18 |
19 class ConnectionManager; | 19 class ConnectionManager; |
20 class WindowTreeImpl; | 20 class WindowTreeImpl; |
21 | 21 |
22 // WindowTreeHostConnection is a server-side object that encapsulates the | 22 // WindowTreeHostConnection is a server-side object that encapsulates the |
23 // connection between a client of the WindowTreeHost and its implementation. | 23 // connection between a client of the WindowTreeHost and its implementation. |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 mojom::WindowTreeClientPtr client_; | 79 mojom::WindowTreeClientPtr client_; |
80 | 80 |
81 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostConnectionImpl); | 81 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostConnectionImpl); |
82 }; | 82 }; |
83 | 83 |
84 } // namespace ws | 84 } // namespace ws |
85 | 85 |
86 } // namespace mus | 86 } // namespace mus |
87 | 87 |
88 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_HOST_CONNECTION_H_ | 88 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_HOST_CONNECTION_H_ |
OLD | NEW |