| Index: third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| index 0690f2af085346f29b58929942f462a5f7929338..29cf1d876b3d23f5bbdc13c3f7beb207ed848299 100644
|
| --- a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| @@ -5,15 +5,15 @@
|
| #include "web/WebViewFrameWidget.h"
|
|
|
| #include "core/exported/WebViewBase.h"
|
| +#include "core/frame/WebLocalFrameBase.h"
|
| #include "core/layout/HitTestResult.h"
|
| #include "web/WebInputMethodControllerImpl.h"
|
| -#include "web/WebLocalFrameImpl.h"
|
|
|
| namespace blink {
|
|
|
| WebViewFrameWidget::WebViewFrameWidget(WebWidgetClient& client,
|
| WebViewBase& web_view,
|
| - WebLocalFrameImpl& main_frame)
|
| + WebLocalFrameBase& main_frame)
|
| : client_(&client), web_view_(&web_view), main_frame_(&main_frame) {
|
| main_frame_->SetFrameWidget(this);
|
| web_view_->SetCompositorVisibility(true);
|
| @@ -207,7 +207,7 @@ void WebViewFrameWidget::SetBaseBackgroundColor(WebColor color) {
|
| web_view_->SetBaseBackgroundColor(color);
|
| }
|
|
|
| -WebLocalFrameImpl* WebViewFrameWidget::LocalRoot() const {
|
| +WebLocalFrameBase* WebViewFrameWidget::LocalRoot() const {
|
| return web_view_->MainFrameImpl();
|
| }
|
|
|
|
|