| Index: components/mus/public/cpp/tests/window_server_test_base.cc
|
| diff --git a/components/mus/public/cpp/tests/window_server_test_base.cc b/components/mus/public/cpp/tests/window_server_test_base.cc
|
| index 649fc2468d1f857abbe7b4e2a7288f713f9c2fd3..7d328935133cc954465213d64b3f25a0cf01ac71 100644
|
| --- a/components/mus/public/cpp/tests/window_server_test_base.cc
|
| +++ b/components/mus/public/cpp/tests/window_server_test_base.cc
|
| @@ -79,7 +79,7 @@ mojo::ApplicationDelegate* WindowServerTestBase::GetApplicationDelegate() {
|
|
|
| bool WindowServerTestBase::ConfigureIncomingConnection(
|
| mojo::ApplicationConnection* connection) {
|
| - connection->AddService<mojo::ViewTreeClient>(this);
|
| + connection->AddService<mojom::WindowTreeClient>(this);
|
| return true;
|
| }
|
|
|
| @@ -94,7 +94,7 @@ void WindowServerTestBase::OnConnectionLost(WindowTreeConnection* connection) {
|
|
|
| void WindowServerTestBase::Create(
|
| mojo::ApplicationConnection* connection,
|
| - mojo::InterfaceRequest<mojo::ViewTreeClient> request) {
|
| + mojo::InterfaceRequest<mojom::WindowTreeClient> request) {
|
| WindowTreeConnection::Create(
|
| this, request.Pass(),
|
| WindowTreeConnection::CreateType::DONT_WAIT_FOR_EMBED);
|
|
|