| Index: third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/RemoteFrame.cpp b/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| index e001e426f60429308bc9028faa146aa94119efaa..e864435226d862991a9816cad4617f57d8fc1615 100644
|
| --- a/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| @@ -27,20 +27,17 @@
|
| namespace blink {
|
|
|
| inline RemoteFrame::RemoteFrame(RemoteFrameClient* client,
|
| - FrameHost* host,
|
| + Page* page,
|
| FrameOwner* owner)
|
| - : Frame(client,
|
| - host ? &host->page() : nullptr,
|
| - owner,
|
| - RemoteWindowProxyManager::create(*this)),
|
| + : Frame(client, page, owner, RemoteWindowProxyManager::create(*this)),
|
| m_securityContext(RemoteSecurityContext::create()) {
|
| m_domWindow = RemoteDOMWindow::create(*this);
|
| }
|
|
|
| RemoteFrame* RemoteFrame::create(RemoteFrameClient* client,
|
| - FrameHost* host,
|
| + Page* page,
|
| FrameOwner* owner) {
|
| - return new RemoteFrame(client, host, owner);
|
| + return new RemoteFrame(client, page, owner);
|
| }
|
|
|
| RemoteFrame::~RemoteFrame() {
|
|
|