Index: components/web_view/web_view_apptest.cc |
diff --git a/components/web_view/web_view_apptest.cc b/components/web_view/web_view_apptest.cc |
index 400f6ff0c95a116bfb1dbcf5d7ad0f5b2b4c5a4c..440d80c68f0da3c03e76d91694b7da01041458c3 100644 |
--- a/components/web_view/web_view_apptest.cc |
+++ b/components/web_view/web_view_apptest.cc |
@@ -28,7 +28,7 @@ |
const char kTestThreeTitle[] = "Test Title Three"; |
} |
-class WebViewTest : public mus::ViewManagerTestBase, |
+class WebViewTest : public mojo::ViewManagerTestBase, |
public mojom::WebViewClient { |
public: |
WebViewTest() : web_view_(this) {} |
@@ -75,7 +75,7 @@ |
} |
// Overridden from ViewTreeDelegate: |
- void OnEmbed(mus::View* root) override { |
+ void OnEmbed(mojo::View* root) override { |
content_ = root->connection()->CreateView(); |
root->AddChild(content_); |
content_->SetVisible(true); |
@@ -86,7 +86,7 @@ |
} |
void TearDown() override { |
- mus::ScopedViewPtr::DeleteViewOrViewManager(window_manager()->GetRoot()); |
+ mojo::ScopedViewPtr::DeleteViewOrViewManager(window_manager()->GetRoot()); |
ViewManagerTestBase::TearDown(); |
} |
@@ -108,7 +108,7 @@ |
mojo::ApplicationImpl* app_; |
- mus::View* content_; |
+ mojo::View* content_; |
web_view::WebView web_view_; |