| Index: components/mus/public/cpp/tests/view_manager_test_base.cc
|
| diff --git a/components/mus/public/cpp/tests/view_manager_test_base.cc b/components/mus/public/cpp/tests/view_manager_test_base.cc
|
| index 508cd82a6f77a0ce93fc567ff912bfc3353a8381..8ed4204fdcf3a3ed34430d79171de5e45b84ede7 100644
|
| --- a/components/mus/public/cpp/tests/view_manager_test_base.cc
|
| +++ b/components/mus/public/cpp/tests/view_manager_test_base.cc
|
| @@ -13,7 +13,7 @@
|
| #include "components/mus/public/cpp/view_tree_host_factory.h"
|
| #include "mojo/application/public/cpp/application_impl.h"
|
|
|
| -namespace mus {
|
| +namespace mojo {
|
| namespace {
|
|
|
| base::RunLoop* current_run_loop = nullptr;
|
| @@ -73,13 +73,13 @@
|
| ApplicationTestBase::TearDown();
|
| }
|
|
|
| -mojo::ApplicationDelegate* ViewManagerTestBase::GetApplicationDelegate() {
|
| +ApplicationDelegate* ViewManagerTestBase::GetApplicationDelegate() {
|
| return this;
|
| }
|
|
|
| bool ViewManagerTestBase::ConfigureIncomingConnection(
|
| - mojo::ApplicationConnection* connection) {
|
| - connection->AddService<mojo::ViewTreeClient>(this);
|
| + ApplicationConnection* connection) {
|
| + connection->AddService<ViewTreeClient>(this);
|
| return true;
|
| }
|
|
|
| @@ -92,10 +92,9 @@
|
| view_tree_connection_destroyed_ = true;
|
| }
|
|
|
| -void ViewManagerTestBase::Create(
|
| - mojo::ApplicationConnection* connection,
|
| - mojo::InterfaceRequest<mojo::ViewTreeClient> request) {
|
| +void ViewManagerTestBase::Create(ApplicationConnection* connection,
|
| + InterfaceRequest<ViewTreeClient> request) {
|
| ViewTreeConnection::Create(this, request.Pass());
|
| }
|
|
|
| -} // namespace mus
|
| +} // namespace mojo
|
|
|