| Index: webrtc/modules/congestion_controller/delay_based_bwe.cc
|
| diff --git a/webrtc/modules/congestion_controller/delay_based_bwe.cc b/webrtc/modules/congestion_controller/delay_based_bwe.cc
|
| index 86ef6f2749b1a1bf4e5362b35a7eebbc659d3f99..bd9f3eef31c84a3d067dba5e8f337a9105f02dd2 100644
|
| --- a/webrtc/modules/congestion_controller/delay_based_bwe.cc
|
| +++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc
|
| @@ -32,7 +32,6 @@ constexpr int kInterArrivalShift =
|
| kAbsSendTimeFraction + kAbsSendTimeInterArrivalUpshift;
|
| constexpr double kTimestampToMs =
|
| 1000.0 / static_cast<double>(1 << kInterArrivalShift);
|
| -
|
| // This ssrc is used to fulfill the current API but will be removed
|
| // after the API has been changed.
|
| constexpr uint32_t kFixedSsrc = 0;
|
| @@ -59,9 +58,9 @@ void DelayBasedBwe::IncomingPacketFeedbackVector(
|
| const std::vector<PacketInfo>& packet_feedback_vector) {
|
| RTC_DCHECK(network_thread_.CalledOnValidThread());
|
| if (!uma_recorded_) {
|
| - RTC_LOGGED_HISTOGRAM_ENUMERATION(kBweTypeHistogram,
|
| - BweNames::kSendSideTransportSeqNum,
|
| - BweNames::kBweNamesMax);
|
| + RTC_HISTOGRAM_ENUMERATION(kBweTypeHistogram,
|
| + BweNames::kSendSideTransportSeqNum,
|
| + BweNames::kBweNamesMax);
|
| uma_recorded_ = true;
|
| }
|
| for (const auto& packet_info : packet_feedback_vector) {
|
|
|