| Index: Source/web/WebRemoteFrameImpl.cpp
|
| diff --git a/Source/web/WebRemoteFrameImpl.cpp b/Source/web/WebRemoteFrameImpl.cpp
|
| index 030c9941ebe56453c28da1196434ee071deb3cf0..64e9f01cbc4fbdd38bcc1d0a2f92e4da2161ba8f 100644
|
| --- a/Source/web/WebRemoteFrameImpl.cpp
|
| +++ b/Source/web/WebRemoteFrameImpl.cpp
|
| @@ -22,11 +22,6 @@
|
|
|
| namespace blink {
|
|
|
| -WebRemoteFrame* WebRemoteFrame::create(WebRemoteFrameClient* client)
|
| -{
|
| - return WebRemoteFrame::create(WebTreeScopeType::Document, client);
|
| -}
|
| -
|
| WebRemoteFrame* WebRemoteFrame::create(WebTreeScopeType scope, WebRemoteFrameClient* client)
|
| {
|
| return WebRemoteFrameImpl::create(scope, client);
|
| @@ -718,11 +713,6 @@ WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const
|
| return WebString();
|
| }
|
|
|
| -WebLocalFrame* WebRemoteFrameImpl::createLocalChild(const WebString& name, WebSandboxFlags sandboxFlags, WebFrameClient* client, WebFrame* previousSibling)
|
| -{
|
| - return createLocalChild(WebTreeScopeType::Document, name, sandboxFlags, client, previousSibling);
|
| -}
|
| -
|
| WebLocalFrame* WebRemoteFrameImpl::createLocalChild(WebTreeScopeType scope, const WebString& name, WebSandboxFlags sandboxFlags, WebFrameClient* client, WebFrame* previousSibling)
|
| {
|
| WebLocalFrameImpl* child = toWebLocalFrameImpl(WebLocalFrame::create(scope, client));
|
| @@ -748,11 +738,6 @@ void WebRemoteFrameImpl::initializeCoreFrame(FrameHost* host, FrameOwner* owner,
|
| m_frame->tree().setName(name, nullAtom);
|
| }
|
|
|
| -WebRemoteFrame* WebRemoteFrameImpl::createRemoteChild(const WebString& name, WebSandboxFlags sandboxFlags, WebRemoteFrameClient* client)
|
| -{
|
| - return createRemoteChild(WebTreeScopeType::Document, name, sandboxFlags, client);
|
| -}
|
| -
|
| WebRemoteFrame* WebRemoteFrameImpl::createRemoteChild(WebTreeScopeType scope, const WebString& name, WebSandboxFlags sandboxFlags, WebRemoteFrameClient* client)
|
| {
|
| WebRemoteFrameImpl* child = toWebRemoteFrameImpl(WebRemoteFrame::create(scope, client));
|
|
|