Index: webrtc/video/receive_statistics_proxy.cc |
diff --git a/webrtc/video/receive_statistics_proxy.cc b/webrtc/video/receive_statistics_proxy.cc |
index eba28f5b5c397e154bb8032813c5635d0e673db3..b6063a80afbb1719b2c013a0881a52910da3a38d 100644 |
--- a/webrtc/video/receive_statistics_proxy.cc |
+++ b/webrtc/video/receive_statistics_proxy.cc |
@@ -103,7 +103,7 @@ void ReceiveStatisticsProxy::StatisticsUpdated( |
const webrtc::RtcpStatistics& statistics, |
uint32_t ssrc) { |
rtc::CritScope lock(&crit_); |
- // TODO(pbos): Handle both local and remote ssrcs here and DCHECK that we |
+ // TODO(pbos): Handle both local and remote ssrcs here and RTC_DCHECK that we |
// receive stats from one of them. |
if (stats_.ssrc != ssrc) |
return; |
@@ -113,7 +113,7 @@ void ReceiveStatisticsProxy::StatisticsUpdated( |
void ReceiveStatisticsProxy::CNameChanged(const char* cname, uint32_t ssrc) { |
rtc::CritScope lock(&crit_); |
- // TODO(pbos): Handle both local and remote ssrcs here and DCHECK that we |
+ // TODO(pbos): Handle both local and remote ssrcs here and RTC_DCHECK that we |
// receive stats from one of them. |
if (stats_.ssrc != ssrc) |
return; |