| Index: third_party/WebKit/Source/web/RemoteFrameOwner.cpp
|
| diff --git a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
|
| index b97eee69e96630d3630e7020550bea8991fcbb94..85b667f006d762215d08a94aade57c91c70174f2 100644
|
| --- a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
|
| +++ b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
|
| @@ -5,8 +5,8 @@
|
| #include "web/RemoteFrameOwner.h"
|
|
|
| #include "core/frame/LocalFrame.h"
|
| +#include "core/frame/WebLocalFrameBase.h"
|
| #include "public/web/WebFrameClient.h"
|
| -#include "web/WebLocalFrameImpl.h"
|
|
|
| namespace blink {
|
|
|
| @@ -47,8 +47,8 @@ void RemoteFrameOwner::ClearContentFrame() {
|
| }
|
|
|
| void RemoteFrameOwner::DispatchLoad() {
|
| - WebLocalFrameImpl* web_frame =
|
| - WebLocalFrameImpl::FromFrame(ToLocalFrame(*frame_));
|
| + WebLocalFrameBase* web_frame =
|
| + WebLocalFrameBase::FromFrame(ToLocalFrame(*frame_));
|
| web_frame->Client()->DispatchLoad();
|
| }
|
|
|
|
|