| Index: webrtc/pc/channel.cc
|
| diff --git a/webrtc/pc/channel.cc b/webrtc/pc/channel.cc
|
| index 9fe8aefe92786f8c7734874b5b2d6a9ac1066e94..c1909a2829c8f5a810d75a6c321fe8386bfdd6e1 100644
|
| --- a/webrtc/pc/channel.cc
|
| +++ b/webrtc/pc/channel.cc
|
| @@ -601,15 +601,15 @@ void BaseChannel::OnDtlsState(TransportChannel* channel,
|
| void BaseChannel::OnSelectedCandidatePairChanged(
|
| TransportChannel* channel,
|
| CandidatePairInterface* selected_candidate_pair,
|
| - int last_sent_packet_id) {
|
| + int last_sent_packet_id,
|
| + bool ready_to_send) {
|
| ASSERT(channel == transport_channel_ || channel == rtcp_transport_channel_);
|
| RTC_DCHECK(network_thread_->IsCurrent());
|
| std::string transport_name = channel->transport_name();
|
| rtc::NetworkRoute network_route;
|
| if (selected_candidate_pair) {
|
| network_route = rtc::NetworkRoute(
|
| - selected_candidate_pair->ReadyToSendMedia(),
|
| - selected_candidate_pair->local_candidate().network_id(),
|
| + ready_to_send, selected_candidate_pair->local_candidate().network_id(),
|
| selected_candidate_pair->remote_candidate().network_id(),
|
| last_sent_packet_id);
|
| }
|
|
|