Index: extensions/browser/guest_view/web_view/web_view_apitest.h |
diff --git a/extensions/browser/guest_view/web_view/web_view_apitest.h b/extensions/browser/guest_view/web_view/web_view_apitest.h |
index 06ed26a1e93eea0a40319ee23fca7944376761ee..6e2def461a800c9c05f6da3f6b5707d99ccc4c22 100644 |
--- a/extensions/browser/guest_view/web_view/web_view_apitest.h |
+++ b/extensions/browser/guest_view/web_view/web_view_apitest.h |
@@ -3,7 +3,7 @@ |
// found in the LICENSE file. |
#include "base/values.h" |
-#include "extensions/browser/guest_view/test_guest_view_manager.h" |
+#include "components/guest_view/browser/test_guest_view_manager.h" |
#include "extensions/shell/test/shell_test.h" |
#include "ui/gfx/switches.h" |
@@ -11,8 +11,11 @@ namespace content { |
class WebContents; |
} // namespace content |
-namespace extensions { |
+namespace guestview { |
class TestGuestViewManager; |
+} // namesapce guestview |
+ |
+namespace extensions { |
// Base class for WebView tests in app_shell. |
class WebViewAPITest : public AppShellTest { |
@@ -33,7 +36,7 @@ class WebViewAPITest : public AppShellTest { |
content::WebContents* GetEmbedderWebContents(); |
// Returns the GuestViewManager singleton. |
- TestGuestViewManager* GetGuestViewManager(); |
+ guestview::TestGuestViewManager* GetGuestViewManager(); |
content::WebContents* GetGuestWebContents(); |
void SendMessageToGuestAndWait(const std::string& message, |
@@ -47,7 +50,7 @@ class WebViewAPITest : public AppShellTest { |
void TearDownOnMainThread() override; |
content::WebContents* embedder_web_contents_; |
- TestGuestViewManagerFactory factory_; |
+ guestview::TestGuestViewManagerFactory factory_; |
base::DictionaryValue test_config_; |
private: |