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

Unified Diff: Source/web/WebRemoteFrameImpl.h

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/WebRange.cpp ('k') | Source/web/WebRemoteFrameImpl.cpp » ('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 bcb55a85f007c5fd7885dd59ad868cdea9a3410e..e294c344e2d3f0352cec08aca70d0ff0b026b674 100644
--- a/Source/web/WebRemoteFrameImpl.h
+++ b/Source/web/WebRemoteFrameImpl.h
@@ -11,7 +11,7 @@
#include "wtf/OwnPtr.h"
#include "wtf/RefCounted.h"
-namespace WebCore {
+namespace blink {
class FrameHost;
class FrameOwner;
class RemoteFrame;
@@ -176,18 +176,18 @@ public:
virtual WebLocalFrame* createLocalChild(const WebString& name, WebFrameClient*) OVERRIDE;
virtual WebRemoteFrame* createRemoteChild(const WebString& name, WebFrameClient*) OVERRIDE;
- void initializeWebCoreFrame(WebCore::FrameHost*, WebCore::FrameOwner*, const AtomicString& name);
+ void initializeWebCoreFrame(blink::FrameHost*, blink::FrameOwner*, const AtomicString& name);
- void setWebCoreFrame(PassRefPtr<WebCore::RemoteFrame>);
- WebCore::RemoteFrame* frame() const { return m_frame.get(); }
+ void setWebCoreFrame(PassRefPtr<blink::RemoteFrame>);
+ blink::RemoteFrame* frame() const { return m_frame.get(); }
- static WebRemoteFrameImpl* fromFrame(WebCore::RemoteFrame&);
+ static WebRemoteFrameImpl* fromFrame(blink::RemoteFrame&);
private:
RemoteFrameClient m_frameClient;
- RefPtr<WebCore::RemoteFrame> m_frame;
+ RefPtr<blink::RemoteFrame> m_frame;
- HashMap<WebFrame*, OwnPtr<WebCore::FrameOwner> > m_ownersForChildren;
+ HashMap<WebFrame*, OwnPtr<blink::FrameOwner> > m_ownersForChildren;
};
DEFINE_TYPE_CASTS(WebRemoteFrameImpl, WebFrame, frame, frame->isWebRemoteFrame(), frame.isWebRemoteFrame());
« no previous file with comments | « Source/web/WebRange.cpp ('k') | Source/web/WebRemoteFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698