| 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 e864435226d862991a9816cad4617f57d8fc1615..866bca73ffdc589e3ff5721388e970ef14748535 100644
|
| --- a/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/RemoteFrame.cpp
|
| @@ -27,7 +27,7 @@
|
| namespace blink {
|
|
|
| inline RemoteFrame::RemoteFrame(RemoteFrameClient* client,
|
| - Page* page,
|
| + Page& page,
|
| FrameOwner* owner)
|
| : Frame(client, page, owner, RemoteWindowProxyManager::create(*this)),
|
| m_securityContext(RemoteSecurityContext::create()) {
|
| @@ -35,7 +35,7 @@ inline RemoteFrame::RemoteFrame(RemoteFrameClient* client,
|
| }
|
|
|
| RemoteFrame* RemoteFrame::create(RemoteFrameClient* client,
|
| - Page* page,
|
| + Page& page,
|
| FrameOwner* owner) {
|
| return new RemoteFrame(client, page, owner);
|
| }
|
|
|