Index: components/mus/ws/client_connection.h |
diff --git a/components/mus/ws/client_connection.h b/components/mus/ws/client_connection.h |
index 37f8fc961fb7357f7f177c1da76225c5cf99f541..4227977caca067ac55f53a6273b2de5367ca20a1 100644 |
--- a/components/mus/ws/client_connection.h |
+++ b/components/mus/ws/client_connection.h |
@@ -29,7 +29,7 @@ class ClientConnection { |
mojom::WindowTreeClient* client() { return client_; } |
- virtual mojom::WindowManagerInternal* GetWindowManagerInternal() = 0; |
+ virtual mojom::WindowManager* GetWindowManager() = 0; |
virtual void SetIncomingMethodCallProcessingPaused(bool paused) = 0; |
@@ -51,14 +51,14 @@ class DefaultClientConnection : public ClientConnection { |
~DefaultClientConnection() override; |
// ClientConnection: |
- mojom::WindowManagerInternal* GetWindowManagerInternal() override; |
+ mojom::WindowManager* GetWindowManager() override; |
void SetIncomingMethodCallProcessingPaused(bool paused) override; |
private: |
ConnectionManager* connection_manager_; |
mojo::Binding<mojom::WindowTree> binding_; |
mojom::WindowTreeClientPtr client_; |
- mojom::WindowManagerInternalAssociatedPtr window_manager_internal_; |
+ mojom::WindowManagerAssociatedPtr window_manager_internal_; |
DISALLOW_COPY_AND_ASSIGN(DefaultClientConnection); |
}; |