| Index: third_party/WebKit/Source/web/WebRemoteFrameImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.h b/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
|
| index 6b7930adf571b43d464b43123ab82601a8f866f0..15948b04dff263a759381d07444e25f1e40b41eb 100644
|
| --- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.h
|
| @@ -23,7 +23,7 @@ class RemoteFrame;
|
|
|
| class WebRemoteFrameImpl final : public WebFrameImplBase, public WebRemoteFrame {
|
| public:
|
| - static WebRemoteFrameImpl* create(WebTreeScopeType, WebRemoteFrameClient*);
|
| + static WebRemoteFrameImpl* create(WebTreeScopeType, WebRemoteFrameClient*, WebFrame* opener);
|
| ~WebRemoteFrameImpl() override;
|
|
|
| // WebFrame methods:
|
| @@ -152,8 +152,8 @@ public:
|
| static WebRemoteFrameImpl* fromFrame(RemoteFrame&);
|
|
|
| // WebRemoteFrame methods:
|
| - WebLocalFrame* createLocalChild(WebTreeScopeType, const WebString& name, const WebString& uniqueName, WebSandboxFlags, WebFrameClient*, WebFrame* previousSibling, const WebFrameOwnerProperties&) override;
|
| - WebRemoteFrame* createRemoteChild(WebTreeScopeType, const WebString& name, const WebString& uniqueName, WebSandboxFlags, WebRemoteFrameClient*) override;
|
| + WebLocalFrame* createLocalChild(WebTreeScopeType, const WebString& name, const WebString& uniqueName, WebSandboxFlags, WebFrameClient*, WebFrame* previousSibling, const WebFrameOwnerProperties&, WebFrame* opener) override;
|
| + WebRemoteFrame* createRemoteChild(WebTreeScopeType, const WebString& name, const WebString& uniqueName, WebSandboxFlags, WebRemoteFrameClient*, WebFrame* opener) override;
|
|
|
| void initializeFromFrame(WebLocalFrame*) const override;
|
|
|
|
|