Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: third_party/WebKit/Source/web/WebFrame.cpp

Issue 1780603002: blink: Rename bindings/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-bindings: rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698