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

Unified Diff: Source/web/RemoteFrameClient.cpp

Issue 462353003: Cleanup namespace usage in Source/web[A-V]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor updates 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/PrerendererClientImpl.cpp ('k') | Source/web/ScrollbarGroup.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 7b63605246dd2f79e0ed309bc5b416eb6921977c..e9ca086ac91bfd133b20406052cbc373de08d4d9 100644
--- a/Source/web/RemoteFrameClient.cpp
+++ b/Source/web/RemoteFrameClient.cpp
@@ -14,42 +14,42 @@ RemoteFrameClient::RemoteFrameClient(WebRemoteFrameImpl* webFrame)
{
}
-blink::Frame* RemoteFrameClient::opener() const
+Frame* RemoteFrameClient::opener() const
{
return toWebCoreFrame(m_webFrame->opener());
}
-void RemoteFrameClient::setOpener(blink::Frame*)
+void RemoteFrameClient::setOpener(Frame*)
{
// FIXME: Implement.
}
-blink::Frame* RemoteFrameClient::parent() const
+Frame* RemoteFrameClient::parent() const
{
return toWebCoreFrame(m_webFrame->parent());
}
-blink::Frame* RemoteFrameClient::top() const
+Frame* RemoteFrameClient::top() const
{
return toWebCoreFrame(m_webFrame->top());
}
-blink::Frame* RemoteFrameClient::previousSibling() const
+Frame* RemoteFrameClient::previousSibling() const
{
return toWebCoreFrame(m_webFrame->previousSibling());
}
-blink::Frame* RemoteFrameClient::nextSibling() const
+Frame* RemoteFrameClient::nextSibling() const
{
return toWebCoreFrame(m_webFrame->nextSibling());
}
-blink::Frame* RemoteFrameClient::firstChild() const
+Frame* RemoteFrameClient::firstChild() const
{
return toWebCoreFrame(m_webFrame->firstChild());
}
-blink::Frame* RemoteFrameClient::lastChild() const
+Frame* RemoteFrameClient::lastChild() const
{
return toWebCoreFrame(m_webFrame->lastChild());
}
« no previous file with comments | « Source/web/PrerendererClientImpl.cpp ('k') | Source/web/ScrollbarGroup.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698