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

Unified Diff: Source/web/RemoteFrameClient.cpp

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/RemoteFrameClient.h ('k') | Source/web/ScrollbarGroup.h » ('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 c9306ee6bbead2346282a009b113df60042657d6..7b63605246dd2f79e0ed309bc5b416eb6921977c 100644
--- a/Source/web/RemoteFrameClient.cpp
+++ b/Source/web/RemoteFrameClient.cpp
@@ -14,42 +14,42 @@ RemoteFrameClient::RemoteFrameClient(WebRemoteFrameImpl* webFrame)
{
}
-WebCore::Frame* RemoteFrameClient::opener() const
+blink::Frame* RemoteFrameClient::opener() const
{
return toWebCoreFrame(m_webFrame->opener());
}
-void RemoteFrameClient::setOpener(WebCore::Frame*)
+void RemoteFrameClient::setOpener(blink::Frame*)
{
// FIXME: Implement.
}
-WebCore::Frame* RemoteFrameClient::parent() const
+blink::Frame* RemoteFrameClient::parent() const
{
return toWebCoreFrame(m_webFrame->parent());
}
-WebCore::Frame* RemoteFrameClient::top() const
+blink::Frame* RemoteFrameClient::top() const
{
return toWebCoreFrame(m_webFrame->top());
}
-WebCore::Frame* RemoteFrameClient::previousSibling() const
+blink::Frame* RemoteFrameClient::previousSibling() const
{
return toWebCoreFrame(m_webFrame->previousSibling());
}
-WebCore::Frame* RemoteFrameClient::nextSibling() const
+blink::Frame* RemoteFrameClient::nextSibling() const
{
return toWebCoreFrame(m_webFrame->nextSibling());
}
-WebCore::Frame* RemoteFrameClient::firstChild() const
+blink::Frame* RemoteFrameClient::firstChild() const
{
return toWebCoreFrame(m_webFrame->firstChild());
}
-WebCore::Frame* RemoteFrameClient::lastChild() const
+blink::Frame* RemoteFrameClient::lastChild() const
{
return toWebCoreFrame(m_webFrame->lastChild());
}
« no previous file with comments | « Source/web/RemoteFrameClient.h ('k') | Source/web/ScrollbarGroup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698