Index: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp |
index bd371af55f939d0cabe93243349f5abef9ec9850..59398c357fa529ceeb4faafdb652a611a2aad55a 100644 |
--- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp |
@@ -9,6 +9,7 @@ |
#include "core/dom/Fullscreen.h" |
#include "core/dom/RemoteSecurityContext.h" |
#include "core/dom/SecurityContext.h" |
+#include "core/exported/WebViewBase.h" |
#include "core/frame/FrameView.h" |
#include "core/frame/Settings.h" |
#include "core/frame/csp/ContentSecurityPolicy.h" |
@@ -28,7 +29,6 @@ |
#include "v8/include/v8.h" |
#include "web/RemoteFrameOwner.h" |
#include "web/WebLocalFrameImpl.h" |
-#include "web/WebViewImpl.h" |
namespace blink { |
@@ -137,7 +137,7 @@ bool WebRemoteFrameImpl::HasVerticalScrollbar() const { |
WebView* WebRemoteFrameImpl::View() const { |
if (!GetFrame()) |
return nullptr; |
- return WebViewImpl::FromPage(GetFrame()->GetPage()); |
+ return WebViewBase::FromPage(GetFrame()->GetPage()); |
} |
WebDocument WebRemoteFrameImpl::GetDocument() const { |