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

Unified Diff: Source/web/WebSocketImpl.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/WebSharedWorkerImpl.cpp ('k') | Source/web/WebSocketImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSocketImpl.h
diff --git a/Source/web/WebSocketImpl.h b/Source/web/WebSocketImpl.h
index ece2529b429e39ddeb5f341207d1a99fb7bc4b72..08481864a81311c5a7dec7f8e1f8bbd528a9ae18 100644
--- a/Source/web/WebSocketImpl.h
+++ b/Source/web/WebSocketImpl.h
@@ -40,14 +40,14 @@
#include "wtf/OwnPtr.h"
#include "wtf/RefPtr.h"
-namespace WebCore { class WebSocketChannel; }
+namespace blink { class WebSocketChannel; }
namespace blink {
class WebDocument;
class WebURL;
-class WebSocketImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<WebSocketImpl>, public WebSocket, public WebCore::WebSocketChannelClient {
+class WebSocketImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<WebSocketImpl>, public WebSocket, public blink::WebSocketChannelClient {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WebSocketImpl)
public:
WebSocketImpl(const WebDocument&, WebSocketClient*);
@@ -76,10 +76,10 @@ public:
virtual void didStartClosingHandshake() OVERRIDE;
virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short code, const String& reason) OVERRIDE;
- virtual void trace(WebCore::Visitor*) OVERRIDE;
+ virtual void trace(blink::Visitor*) OVERRIDE;
private:
- RefPtrWillBeMember<WebCore::WebSocketChannel> m_private;
+ RefPtrWillBeMember<blink::WebSocketChannel> m_private;
WebSocketClient* m_client;
BinaryType m_binaryType;
WebString m_subprotocol;
« no previous file with comments | « Source/web/WebSharedWorkerImpl.cpp ('k') | Source/web/WebSocketImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698