| Index: webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
|
| diff --git a/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h b/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
|
| index 7a8f362c312335ebc37c4880712075256101aaab..8a1d16f49bc26b1b82c9f0624ae21bac0e9ae655 100644
|
| --- a/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
|
| +++ b/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
|
| @@ -32,6 +32,7 @@ struct SentPacket;
|
|
|
| namespace webrtc {
|
|
|
| +class AlrState;
|
| class BitrateController;
|
| class Clock;
|
| class AcknowledgedBitrateEstimator;
|
| @@ -154,6 +155,7 @@ class SendSideCongestionController : public CallStatsObserver,
|
| rtc::CriticalSection bwe_lock_;
|
| int min_bitrate_bps_ GUARDED_BY(bwe_lock_);
|
| std::unique_ptr<DelayBasedBwe> delay_based_bwe_ GUARDED_BY(bwe_lock_);
|
| + const std::unique_ptr<AlrState> alr_state_;
|
|
|
| rtc::RaceChecker worker_race_;
|
|
|
|
|