| Index: Source/core/frame/RemoteFrame.cpp
|
| diff --git a/Source/core/frame/RemoteFrame.cpp b/Source/core/frame/RemoteFrame.cpp
|
| index ae7408abaf2b4476e58f467480ff6a6449d0df8c..44589e4eb1507e4ab48c2de47163999da3bd8493 100644
|
| --- a/Source/core/frame/RemoteFrame.cpp
|
| +++ b/Source/core/frame/RemoteFrame.cpp
|
| @@ -5,6 +5,7 @@
|
| #include "config.h"
|
| #include "core/frame/RemoteFrame.h"
|
|
|
| +#include "core/frame/FrameClient.h"
|
| #include "core/frame/RemoteFrameView.h"
|
| #include "core/html/HTMLFrameOwnerElement.h"
|
|
|
| @@ -26,6 +27,11 @@ RemoteFrame::~RemoteFrame()
|
| setView(nullptr);
|
| }
|
|
|
| +void RemoteFrame::navigate(Document&, const KURL& url, const Referrer& referrer, bool lockBackForwardList)
|
| +{
|
| + client()->navigate(ResourceRequest(url, referrer), lockBackForwardList);
|
| +}
|
| +
|
| void RemoteFrame::detach()
|
| {
|
| detachChildren();
|
|
|