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

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

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.cpp
diff --git a/Source/core/platform/mediastream/RTCDataChannelHandler.cpp b/Source/core/platform/mediastream/RTCDataChannelHandler.cpp
index cd3d749b7ec5ce950d6bd644ee7ed28bf49647bd..b3179311b98c94075ff26712e516fe5ed53182f7 100644
--- a/Source/core/platform/mediastream/RTCDataChannelHandler.cpp
+++ b/Source/core/platform/mediastream/RTCDataChannelHandler.cpp
@@ -32,12 +32,12 @@
namespace WebCore {
-PassOwnPtr<RTCDataChannelHandler> RTCDataChannelHandler::create(WebKit::WebRTCDataChannelHandler* webHandler)
+PassOwnPtr<RTCDataChannelHandler> RTCDataChannelHandler::create(blink::WebRTCDataChannelHandler* webHandler)
{
return adoptPtr(new RTCDataChannelHandler(webHandler));
}
-RTCDataChannelHandler::RTCDataChannelHandler(WebKit::WebRTCDataChannelHandler* webHandler)
+RTCDataChannelHandler::RTCDataChannelHandler(blink::WebRTCDataChannelHandler* webHandler)
: m_webHandler(adoptPtr(webHandler))
, m_client(0)
{
@@ -119,7 +119,7 @@ void RTCDataChannelHandler::didChangeReadyState(WebRTCDataChannelHandlerClient::
m_client->didChangeReadyState(static_cast<RTCDataChannelHandlerClient::ReadyState>(state));
}
-void RTCDataChannelHandler::didReceiveStringData(const WebKit::WebString& data) const
+void RTCDataChannelHandler::didReceiveStringData(const blink::WebString& data) const
{
if (m_client)
m_client->didReceiveStringData(data);
« no previous file with comments | « Source/core/platform/mediastream/RTCDataChannelHandler.h ('k') | Source/core/platform/mediastream/RTCPeerConnectionHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698