| Index: third_party/WebKit/Source/web/FullscreenController.cpp
|
| diff --git a/third_party/WebKit/Source/web/FullscreenController.cpp b/third_party/WebKit/Source/web/FullscreenController.cpp
|
| index c0d5ec4b5b97e793509a5662d21cebcae86047e6..8142f04c3c8cf2ecf887f10773522da16e1ee1ec 100644
|
| --- a/third_party/WebKit/Source/web/FullscreenController.cpp
|
| +++ b/third_party/WebKit/Source/web/FullscreenController.cpp
|
| @@ -36,19 +36,19 @@
|
| #include "core/frame/FrameView.h"
|
| #include "core/frame/LocalFrame.h"
|
| #include "core/frame/PageScaleConstraintsSet.h"
|
| +#include "core/frame/WebLocalFrameBase.h"
|
| #include "core/html/HTMLVideoElement.h"
|
| #include "core/layout/LayoutFullScreen.h"
|
| #include "core/page/Page.h"
|
| #include "public/platform/WebLayerTreeView.h"
|
| #include "public/web/WebFrameClient.h"
|
| -#include "web/WebLocalFrameImpl.h"
|
|
|
| namespace blink {
|
|
|
| namespace {
|
|
|
| WebFrameClient& GetWebFrameClient(LocalFrame& frame) {
|
| - WebLocalFrameImpl* web_frame = WebLocalFrameImpl::FromFrame(frame);
|
| + WebLocalFrameBase* web_frame = WebLocalFrameBase::FromFrame(frame);
|
| DCHECK(web_frame);
|
| DCHECK(web_frame->Client());
|
| return *web_frame->Client();
|
|
|