| Index: third_party/WebKit/Source/web/WebFrame.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrame.cpp b/third_party/WebKit/Source/web/WebFrame.cpp
|
| index e77815dafa081d838ec43a2151e113506ff9f5d6..8f185679f5004756b27b28c4b10bb6ca20d7c6b5 100644
|
| --- a/third_party/WebKit/Source/web/WebFrame.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrame.cpp
|
| @@ -76,8 +76,8 @@ bool WebFrame::swap(WebFrame* frame)
|
|
|
| v8::HandleScope handleScope(v8::Isolate::GetCurrent());
|
| HashMap<DOMWrapperWorld*, v8::Local<v8::Object>> globals;
|
| - oldFrame->windowProxyManager()->clearForNavigation();
|
| - oldFrame->windowProxyManager()->releaseGlobals(globals);
|
| + oldFrame->getWindowProxyManager()->clearForNavigation();
|
| + oldFrame->getWindowProxyManager()->releaseGlobals(globals);
|
|
|
| // Although the Document in this frame is now unloaded, many resources
|
| // associated with the frame itself have not yet been freed yet.
|
| @@ -105,7 +105,7 @@ bool WebFrame::swap(WebFrame* frame)
|
| toWebRemoteFrameImpl(frame)->initializeCoreFrame(host, owner, name, uniqueName);
|
| }
|
|
|
| - frame->toImplBase()->frame()->windowProxyManager()->setGlobals(globals);
|
| + frame->toImplBase()->frame()->getWindowProxyManager()->setGlobals(globals);
|
|
|
| m_parent = nullptr;
|
|
|
|
|