Index: components/mus/connection_manager_delegate.h |
diff --git a/components/mus/connection_manager_delegate.h b/components/mus/connection_manager_delegate.h |
index b7b2ae933042dbf615fbf4374a54fd53dbaef201..f9fbcde9dacf1faa17996afa25e584f689587f66 100644 |
--- a/components/mus/connection_manager_delegate.h |
+++ b/components/mus/connection_manager_delegate.h |
@@ -11,15 +11,12 @@ |
#include "components/mus/public/interfaces/view_tree.mojom.h" |
#include "third_party/mojo/src/mojo/public/cpp/bindings/interface_request.h" |
-namespace mojo { |
-class ViewTree; |
-} |
- |
-namespace view_manager { |
+namespace mus { |
class ClientConnection; |
class ConnectionManager; |
struct ViewId; |
+class ViewTree; |
class ConnectionManagerDelegate { |
public: |
@@ -30,13 +27,13 @@ class ConnectionManagerDelegate { |
virtual ClientConnection* CreateClientConnectionForEmbedAtView( |
ConnectionManager* connection_manager, |
mojo::InterfaceRequest<mojo::ViewTree> tree_request, |
- mojo::ConnectionSpecificId creator_id, |
+ ConnectionSpecificId creator_id, |
mojo::URLRequestPtr request, |
const ViewId& root_id) = 0; |
virtual ClientConnection* CreateClientConnectionForEmbedAtView( |
ConnectionManager* connection_manager, |
mojo::InterfaceRequest<mojo::ViewTree> tree_request, |
- mojo::ConnectionSpecificId creator_id, |
+ ConnectionSpecificId creator_id, |
const ViewId& root_id, |
mojo::ViewTreeClientPtr client) = 0; |
@@ -44,6 +41,6 @@ class ConnectionManagerDelegate { |
virtual ~ConnectionManagerDelegate() {} |
}; |
-} // namespace view_manager |
+} // namespace mus |
#endif // COMPONENTS_MUS_CONNECTION_MANAGER_DELEGATE_H_ |