| Index: webrtc/modules/remote_bitrate_estimator/send_time_history.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/send_time_history.cc b/webrtc/modules/remote_bitrate_estimator/send_time_history.cc
|
| index a58d12a1600d3744818b486a0cfc1911b82a3e5d..2784df62040f46582b7718ec1f16272ddd76dcb5 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/send_time_history.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/send_time_history.cc
|
| @@ -28,7 +28,7 @@ void SendTimeHistory::Clear() {
|
|
|
| void SendTimeHistory::AddAndRemoveOld(uint16_t sequence_number,
|
| size_t length,
|
| - bool was_paced) {
|
| + int probe_cluster_id) {
|
| EraseOld();
|
|
|
| if (history_.empty())
|
| @@ -36,7 +36,7 @@ void SendTimeHistory::AddAndRemoveOld(uint16_t sequence_number,
|
|
|
| history_.insert(std::pair<uint16_t, PacketInfo>(
|
| sequence_number, PacketInfo(clock_->TimeInMilliseconds(), 0, -1,
|
| - sequence_number, length, was_paced)));
|
| + sequence_number, length, probe_cluster_id)));
|
| }
|
|
|
| bool SendTimeHistory::OnSentPacket(uint16_t sequence_number,
|
|
|