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

Unified Diff: Source/web/RemoteFrameClient.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/FrameLoaderClientImpl.cpp ('k') | Source/web/SpellCheckerClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/RemoteFrameClient.cpp
diff --git a/Source/web/RemoteFrameClient.cpp b/Source/web/RemoteFrameClient.cpp
index e9ca086ac91bfd133b20406052cbc373de08d4d9..96325544cce8a77ad51fea828b737d851c1e9d93 100644
--- a/Source/web/RemoteFrameClient.cpp
+++ b/Source/web/RemoteFrameClient.cpp
@@ -16,7 +16,7 @@ RemoteFrameClient::RemoteFrameClient(WebRemoteFrameImpl* webFrame)
Frame* RemoteFrameClient::opener() const
{
- return toWebCoreFrame(m_webFrame->opener());
+ return toCoreFrame(m_webFrame->opener());
}
void RemoteFrameClient::setOpener(Frame*)
@@ -26,32 +26,32 @@ void RemoteFrameClient::setOpener(Frame*)
Frame* RemoteFrameClient::parent() const
{
- return toWebCoreFrame(m_webFrame->parent());
+ return toCoreFrame(m_webFrame->parent());
}
Frame* RemoteFrameClient::top() const
{
- return toWebCoreFrame(m_webFrame->top());
+ return toCoreFrame(m_webFrame->top());
}
Frame* RemoteFrameClient::previousSibling() const
{
- return toWebCoreFrame(m_webFrame->previousSibling());
+ return toCoreFrame(m_webFrame->previousSibling());
}
Frame* RemoteFrameClient::nextSibling() const
{
- return toWebCoreFrame(m_webFrame->nextSibling());
+ return toCoreFrame(m_webFrame->nextSibling());
}
Frame* RemoteFrameClient::firstChild() const
{
- return toWebCoreFrame(m_webFrame->firstChild());
+ return toCoreFrame(m_webFrame->firstChild());
}
Frame* RemoteFrameClient::lastChild() const
{
- return toWebCoreFrame(m_webFrame->lastChild());
+ return toCoreFrame(m_webFrame->lastChild());
}
} // namespace blink
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | Source/web/SpellCheckerClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698