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

Unified Diff: Source/web/FrameLoaderClientImpl.cpp

Issue 474143002: Rename some functions of which names contain 'WebCore.' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/web/ContextMenuClientImpl.cpp ('k') | Source/web/RemoteFrameClient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/FrameLoaderClientImpl.cpp
diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp
index 082b7117765aa8b7e58d6ff530b6708697d177ed..6f3dc5d4beeee30a5a21cd0c9c9c6d97569d1995 100644
--- a/Source/web/FrameLoaderClientImpl.cpp
+++ b/Source/web/FrameLoaderClientImpl.cpp
@@ -252,7 +252,7 @@ bool FrameLoaderClientImpl::hasWebView() const
Frame* FrameLoaderClientImpl::opener() const
{
- return toWebCoreFrame(m_webFrame->opener());
+ return toCoreFrame(m_webFrame->opener());
}
void FrameLoaderClientImpl::setOpener(Frame* opener)
@@ -263,32 +263,32 @@ void FrameLoaderClientImpl::setOpener(Frame* opener)
Frame* FrameLoaderClientImpl::parent() const
{
- return toWebCoreFrame(m_webFrame->parent());
+ return toCoreFrame(m_webFrame->parent());
}
Frame* FrameLoaderClientImpl::top() const
{
- return toWebCoreFrame(m_webFrame->top());
+ return toCoreFrame(m_webFrame->top());
}
Frame* FrameLoaderClientImpl::previousSibling() const
{
- return toWebCoreFrame(m_webFrame->previousSibling());
+ return toCoreFrame(m_webFrame->previousSibling());
}
Frame* FrameLoaderClientImpl::nextSibling() const
{
- return toWebCoreFrame(m_webFrame->nextSibling());
+ return toCoreFrame(m_webFrame->nextSibling());
}
Frame* FrameLoaderClientImpl::firstChild() const
{
- return toWebCoreFrame(m_webFrame->firstChild());
+ return toCoreFrame(m_webFrame->firstChild());
}
Frame* FrameLoaderClientImpl::lastChild() const
{
- return toWebCoreFrame(m_webFrame->lastChild());
+ return toCoreFrame(m_webFrame->lastChild());
}
void FrameLoaderClientImpl::detachedFromParent()
@@ -310,7 +310,7 @@ void FrameLoaderClientImpl::detachedFromParent()
client->frameDetached(m_webFrame);
// Clear our reference to LocalFrame at the very end, in case the client
// refers to it.
- m_webFrame->setWebCoreFrame(nullptr);
+ m_webFrame->setCoreFrame(nullptr);
}
void FrameLoaderClientImpl::dispatchWillSendRequest(
« no previous file with comments | « Source/web/ContextMenuClientImpl.cpp ('k') | Source/web/RemoteFrameClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698