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

Unified Diff: Source/core/platform/mediastream/RTCDataChannelHandler.h

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
Index: Source/core/platform/mediastream/RTCDataChannelHandler.h
diff --git a/Source/core/platform/mediastream/RTCDataChannelHandler.h b/Source/core/platform/mediastream/RTCDataChannelHandler.h
index 70a3076f860c3bfd66635182568bf555922276c9..3f2acf38760232b980972f2c48ade86d00dc7161 100644
--- a/Source/core/platform/mediastream/RTCDataChannelHandler.h
+++ b/Source/core/platform/mediastream/RTCDataChannelHandler.h
@@ -36,9 +36,9 @@ namespace WebCore {
class RTCDataChannelHandlerClient;
-class RTCDataChannelHandler : public WebKit::WebRTCDataChannelHandlerClient {
+class RTCDataChannelHandler : public blink::WebRTCDataChannelHandlerClient {
public:
- static PassOwnPtr<RTCDataChannelHandler> create(WebKit::WebRTCDataChannelHandler*);
+ static PassOwnPtr<RTCDataChannelHandler> create(blink::WebRTCDataChannelHandler*);
virtual ~RTCDataChannelHandler();
void setClient(RTCDataChannelHandlerClient*);
@@ -60,16 +60,16 @@ public:
bool sendRawData(const char*, size_t);
void close();
- // WebKit::WebRTCDataChannelHandlerClient implementation.
+ // blink::WebRTCDataChannelHandlerClient implementation.
virtual void didChangeReadyState(ReadyState) const OVERRIDE;
- virtual void didReceiveStringData(const WebKit::WebString&) const OVERRIDE;
+ virtual void didReceiveStringData(const blink::WebString&) const OVERRIDE;
virtual void didReceiveRawData(const char*, size_t) const OVERRIDE;
virtual void didDetectError() const OVERRIDE;
private:
- explicit RTCDataChannelHandler(WebKit::WebRTCDataChannelHandler*);
+ explicit RTCDataChannelHandler(blink::WebRTCDataChannelHandler*);
- OwnPtr<WebKit::WebRTCDataChannelHandler> m_webHandler;
+ OwnPtr<blink::WebRTCDataChannelHandler> m_webHandler;
RTCDataChannelHandlerClient* m_client;
};
« no previous file with comments | « Source/core/platform/mediastream/RTCDTMFSenderHandler.cpp ('k') | Source/core/platform/mediastream/RTCDataChannelHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698