| Index: chrome/browser/media/cast_transport_host_filter.cc
|
| diff --git a/chrome/browser/media/cast_transport_host_filter.cc b/chrome/browser/media/cast_transport_host_filter.cc
|
| index af5ec9abfe5be3093035ee78ee9386b247aeb1db..cafa1c767382b062e8cc8cfd9ad23e29bd0bd296 100644
|
| --- a/chrome/browser/media/cast_transport_host_filter.cc
|
| +++ b/chrome/browser/media/cast_transport_host_filter.cc
|
| @@ -178,11 +178,12 @@ void CastTransportHostFilter::OnSendRtcpFromRtpSender(
|
| void CastTransportHostFilter::OnResendPackets(
|
| int32 channel_id,
|
| bool is_audio,
|
| - const media::cast::MissingFramesAndPacketsMap& missing_packets) {
|
| + const media::cast::MissingFramesAndPacketsMap& missing_packets,
|
| + bool cancel_rtx_not_in_list) {
|
| media::cast::transport::CastTransportSender* sender =
|
| id_map_.Lookup(channel_id);
|
| if (sender) {
|
| - sender->ResendPackets(is_audio, missing_packets);
|
| + sender->ResendPackets(is_audio, missing_packets, cancel_rtx_not_in_list);
|
| } else {
|
| DVLOG(1)
|
| << "CastTransportHostFilter::OnResendPackets on non-existing channel";
|
|
|