| Index: components/mus/ws/client_connection.cc
|
| diff --git a/components/mus/ws/client_connection.cc b/components/mus/ws/client_connection.cc
|
| index 06fa39a2ba823a20784c272d07025e4d357c4004..9dc1e4ebf2336a0691ca9682be12b1e2275e8fba 100644
|
| --- a/components/mus/ws/client_connection.cc
|
| +++ b/components/mus/ws/client_connection.cc
|
| @@ -10,7 +10,7 @@
|
| namespace mus {
|
|
|
| ClientConnection::ClientConnection(scoped_ptr<ViewTreeImpl> service,
|
| - mojo::ViewTreeClient* client)
|
| + mojom::WindowTreeClient* client)
|
| : service_(service.Pass()), client_(client) {}
|
|
|
| ClientConnection::~ClientConnection() {}
|
| @@ -18,8 +18,8 @@ ClientConnection::~ClientConnection() {}
|
| DefaultClientConnection::DefaultClientConnection(
|
| scoped_ptr<ViewTreeImpl> service_impl,
|
| ConnectionManager* connection_manager,
|
| - mojo::InterfaceRequest<mojo::ViewTree> service_request,
|
| - mojo::ViewTreeClientPtr client)
|
| + mojo::InterfaceRequest<mojom::WindowTree> service_request,
|
| + mojom::WindowTreeClientPtr client)
|
| : ClientConnection(service_impl.Pass(), client.get()),
|
| connection_manager_(connection_manager),
|
| binding_(service(), service_request.Pass()),
|
|
|