diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc index 027659d2f0..cdd4b6624f 100644 --- a/webrtc/voice_engine/channel_proxy.cc +++ b/webrtc/voice_engine/channel_proxy.cc @@ -319,17 +319,13 @@ bool ChannelProxy::GetRecCodec(CodecInst* codec_inst) const { } void ChannelProxy::OnTwccBasedUplinkPacketLossRate(float packet_loss_rate) { - // TODO(eladalon): This fails in UT; fix and uncomment. - // See: https://bugs.chromium.org/p/webrtc/issues/detail?id=7405 - // RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); + RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); channel()->OnTwccBasedUplinkPacketLossRate(packet_loss_rate); } void ChannelProxy::OnRecoverableUplinkPacketLossRate( float recoverable_packet_loss_rate) { - // TODO(eladalon): This fails in UT; fix and uncomment. - // See: https://bugs.chromium.org/p/webrtc/issues/detail?id=7405 - // RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); + RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); channel()->OnRecoverableUplinkPacketLossRate(recoverable_packet_loss_rate); }