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

Unified Diff: Source/web/RemoteFrameClient.h

Issue 474183002: Cleanup namespace usage in Source/web/*.h (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/PrerendererClientImpl.h ('k') | Source/web/ServiceWorkerGlobalScopeProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/RemoteFrameClient.h
diff --git a/Source/web/RemoteFrameClient.h b/Source/web/RemoteFrameClient.h
index 15c7ace2898514ba92fc94e27610f9128044d4a6..8f7b85dd8e6f45d5a529ed330fa73f679477f88b 100644
--- a/Source/web/RemoteFrameClient.h
+++ b/Source/web/RemoteFrameClient.h
@@ -11,20 +11,20 @@ namespace blink {
class WebRemoteFrameImpl;
-class RemoteFrameClient : public blink::FrameClient {
+class RemoteFrameClient : public FrameClient {
public:
explicit RemoteFrameClient(WebRemoteFrameImpl*);
// FrameClient overrides:
- virtual blink::Frame* opener() const OVERRIDE;
- virtual void setOpener(blink::Frame*) OVERRIDE;
-
- virtual blink::Frame* parent() const OVERRIDE;
- virtual blink::Frame* top() const OVERRIDE;
- virtual blink::Frame* previousSibling() const OVERRIDE;
- virtual blink::Frame* nextSibling() const OVERRIDE;
- virtual blink::Frame* firstChild() const OVERRIDE;
- virtual blink::Frame* lastChild() const OVERRIDE;
+ virtual Frame* opener() const OVERRIDE;
+ virtual void setOpener(Frame*) OVERRIDE;
+
+ virtual Frame* parent() const OVERRIDE;
+ virtual Frame* top() const OVERRIDE;
+ virtual Frame* previousSibling() const OVERRIDE;
+ virtual Frame* nextSibling() const OVERRIDE;
+ virtual Frame* firstChild() const OVERRIDE;
+ virtual Frame* lastChild() const OVERRIDE;
WebRemoteFrameImpl* webFrame() const { return m_webFrame; }
« no previous file with comments | « Source/web/PrerendererClientImpl.h ('k') | Source/web/ServiceWorkerGlobalScopeProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698