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

Unified Diff: content/renderer/media/rtc_data_channel_handler.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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: content/renderer/media/rtc_data_channel_handler.h
diff --git a/content/renderer/media/rtc_data_channel_handler.h b/content/renderer/media/rtc_data_channel_handler.h
index 8ec07e03691ac1117dae5e4c119cae799900e234..a5521344f0879285482cec21a6679a1f73d8f5a9 100644
--- a/content/renderer/media/rtc_data_channel_handler.h
+++ b/content/renderer/media/rtc_data_channel_handler.h
@@ -21,26 +21,26 @@ namespace content {
// Callbacks to the webrtc::DataChannelObserver implementation also occur on
// the main render thread.
class CONTENT_EXPORT RtcDataChannelHandler
- : NON_EXPORTED_BASE(public WebKit::WebRTCDataChannelHandler),
+ : NON_EXPORTED_BASE(public blink::WebRTCDataChannelHandler),
NON_EXPORTED_BASE(public webrtc::DataChannelObserver),
NON_EXPORTED_BASE(public base::NonThreadSafe) {
public:
explicit RtcDataChannelHandler(webrtc::DataChannelInterface* channel);
virtual ~RtcDataChannelHandler();
- // WebKit::WebRTCDataChannelHandler implementation.
+ // blink::WebRTCDataChannelHandler implementation.
virtual void setClient(
- WebKit::WebRTCDataChannelHandlerClient* client) OVERRIDE;
- virtual WebKit::WebString label() OVERRIDE;
+ blink::WebRTCDataChannelHandlerClient* client) OVERRIDE;
+ virtual blink::WebString label() OVERRIDE;
virtual bool isReliable() OVERRIDE;
virtual bool ordered() const OVERRIDE;
virtual unsigned short maxRetransmitTime() const OVERRIDE;
virtual unsigned short maxRetransmits() const OVERRIDE;
- virtual WebKit::WebString protocol() const OVERRIDE;
+ virtual blink::WebString protocol() const OVERRIDE;
virtual bool negotiated() const OVERRIDE;
virtual unsigned short id() const OVERRIDE;
virtual unsigned long bufferedAmount() OVERRIDE;
- virtual bool sendStringData(const WebKit::WebString& data) OVERRIDE;
+ virtual bool sendStringData(const blink::WebString& data) OVERRIDE;
virtual bool sendRawData(const char* data, size_t length) OVERRIDE;
virtual void close() OVERRIDE;
@@ -50,7 +50,7 @@ class CONTENT_EXPORT RtcDataChannelHandler
private:
scoped_refptr<webrtc::DataChannelInterface> channel_;
- WebKit::WebRTCDataChannelHandlerClient* webkit_client_;
+ blink::WebRTCDataChannelHandlerClient* webkit_client_;
};
} // namespace content
« no previous file with comments | « content/renderer/media/renderer_webmidiaccessor_impl.cc ('k') | content/renderer/media/rtc_data_channel_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698