| Index: components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| diff --git a/components/mus/public/cpp/lib/window_tree_client_impl.cc b/components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| index 520b9de1b61bb99b48a998075fb82530e0b3a5bd..9b199da20cc8d1fb99f9ed7d151ce3152a046265 100644
|
| --- a/components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| +++ b/components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| @@ -85,8 +85,9 @@ Window* BuildWindowTree(WindowTreeClientImpl* client,
|
| return root;
|
| }
|
|
|
| -WindowTreeConnection* WindowTreeConnection::Create(WindowTreeDelegate* delegate,
|
| - mojo::Connector* connector) {
|
| +WindowTreeConnection* WindowTreeConnection::Create(
|
| + WindowTreeDelegate* delegate,
|
| + shell::Connector* connector) {
|
| WindowTreeClientImpl* client =
|
| new WindowTreeClientImpl(delegate, nullptr, nullptr);
|
| client->ConnectViaWindowTreeFactory(connector);
|
| @@ -164,7 +165,7 @@ WindowTreeClientImpl::~WindowTreeClientImpl() {
|
| }
|
|
|
| void WindowTreeClientImpl::ConnectViaWindowTreeFactory(
|
| - mojo::Connector* connector) {
|
| + shell::Connector* connector) {
|
| // Clients created with no root shouldn't delete automatically.
|
| delete_on_no_roots_ = false;
|
|
|
|
|