Index: content/renderer/media/rtc_peer_connection_handler.h |
diff --git a/content/renderer/media/rtc_peer_connection_handler.h b/content/renderer/media/rtc_peer_connection_handler.h |
index 537423e089f73624b74f08b57f0e037e6382af15..562228e4bac02782c6136334b51ad3a3ff0af43a 100644 |
--- a/content/renderer/media/rtc_peer_connection_handler.h |
+++ b/content/renderer/media/rtc_peer_connection_handler.h |
@@ -33,7 +33,7 @@ class WebRtcMediaStreamAdapter; |
// Mockable wrapper for blink::WebRTCStatsResponse |
class CONTENT_EXPORT LocalRTCStatsResponse |
- : public NON_EXPORTED_BASE(talk_base::RefCountInterface) { |
+ : public NON_EXPORTED_BASE(rtc::RefCountInterface) { |
public: |
explicit LocalRTCStatsResponse(const blink::WebRTCStatsResponse& impl) |
: impl_(impl) { |
@@ -56,7 +56,7 @@ class CONTENT_EXPORT LocalRTCStatsResponse |
// Mockable wrapper for blink::WebRTCStatsRequest |
class CONTENT_EXPORT LocalRTCStatsRequest |
- : public NON_EXPORTED_BASE(talk_base::RefCountInterface) { |
+ : public NON_EXPORTED_BASE(rtc::RefCountInterface) { |
public: |
explicit LocalRTCStatsRequest(blink::WebRTCStatsRequest impl); |
// Constructor for testing. |
@@ -72,7 +72,7 @@ class CONTENT_EXPORT LocalRTCStatsRequest |
private: |
blink::WebRTCStatsRequest impl_; |
- talk_base::scoped_refptr<LocalRTCStatsResponse> response_; |
+ rtc::scoped_refptr<LocalRTCStatsResponse> response_; |
}; |
// RTCPeerConnectionHandler is a delegate for the RTC PeerConnection API |