| Index: webrtc/voice_engine/channel_proxy.cc
|
| diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc
|
| index 4cc7f5cbbcdc61cd3f0c68481006ebb88703b4c4..23c730093a778f38f936d5094a216794bdee18cb 100644
|
| --- a/webrtc/voice_engine/channel_proxy.cc
|
| +++ b/webrtc/voice_engine/channel_proxy.cc
|
| @@ -45,6 +45,11 @@ void ChannelProxy::SetRTCP_CNAME(const std::string& c_name) {
|
| RTC_DCHECK_EQ(0, error);
|
| }
|
|
|
| +void ChannelProxy::SetNACKStatus(bool enable, int max_packets) {
|
| + RTC_DCHECK(thread_checker_.CalledOnValidThread());
|
| + channel()->SetNACKStatus(enable, max_packets);
|
| +}
|
| +
|
| void ChannelProxy::SetSendAbsoluteSenderTimeStatus(bool enable, int id) {
|
| RTC_DCHECK(thread_checker_.CalledOnValidThread());
|
| int error = channel()->SetSendAbsoluteSenderTimeStatus(enable, id);
|
|
|