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

Unified Diff: Source/web/WebRemoteFrameImpl.h

Issue 467573002: Cleanup namespace usage in Source/web/Web*.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/WebPopupMenuImpl.h ('k') | Source/web/WebSettingsImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebRemoteFrameImpl.h
diff --git a/Source/web/WebRemoteFrameImpl.h b/Source/web/WebRemoteFrameImpl.h
index 2870d94fbe875a4361ddea089d2c693e005c814b..43240f12ee946f310d47668a0495f40a1625f0f8 100644
--- a/Source/web/WebRemoteFrameImpl.h
+++ b/Source/web/WebRemoteFrameImpl.h
@@ -12,12 +12,10 @@
#include "wtf/RefCounted.h"
namespace blink {
+
class FrameHost;
class FrameOwner;
class RemoteFrame;
-}
-
-namespace blink {
class WebRemoteFrameImpl : public WebRemoteFrame, public RefCounted<WebRemoteFrameImpl> {
public:
@@ -177,18 +175,18 @@ public:
virtual WebLocalFrame* createLocalChild(const WebString& name, WebFrameClient*) OVERRIDE;
virtual WebRemoteFrame* createRemoteChild(const WebString& name, WebFrameClient*) OVERRIDE;
- void initializeWebCoreFrame(blink::FrameHost*, blink::FrameOwner*, const AtomicString& name);
+ void initializeWebCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name);
- void setWebCoreFrame(PassRefPtr<blink::RemoteFrame>);
- blink::RemoteFrame* frame() const { return m_frame.get(); }
+ void setWebCoreFrame(PassRefPtr<RemoteFrame>);
+ RemoteFrame* frame() const { return m_frame.get(); }
- static WebRemoteFrameImpl* fromFrame(blink::RemoteFrame&);
+ static WebRemoteFrameImpl* fromFrame(RemoteFrame&);
private:
RemoteFrameClient m_frameClient;
- RefPtr<blink::RemoteFrame> m_frame;
+ RefPtr<RemoteFrame> m_frame;
- HashMap<WebFrame*, OwnPtr<blink::FrameOwner> > m_ownersForChildren;
+ HashMap<WebFrame*, OwnPtr<FrameOwner> > m_ownersForChildren;
};
DEFINE_TYPE_CASTS(WebRemoteFrameImpl, WebFrame, frame, frame->isWebRemoteFrame(), frame.isWebRemoteFrame());
« no previous file with comments | « Source/web/WebPopupMenuImpl.h ('k') | Source/web/WebSettingsImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698