Chromium Code Reviews| 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 fd76ba0cded7a749021a5b225fc9a1485f971f84..276e1127789c073057cb556cd9f5b8a10ea9c5b5 100644 |
| --- a/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h |
| +++ b/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h |
| @@ -34,6 +34,7 @@ namespace webrtc { |
| class BitrateController; |
| class Clock; |
| +class AcknowledgedBitrateEstimator; |
| class ProbeController; |
| class RateLimiter; |
| class RtcEventLog; |
| @@ -52,7 +53,7 @@ class SendSideCongestionController : public CallStatsObserver, |
| virtual void OnNetworkChanged(uint32_t bitrate_bps, |
| uint8_t fraction_loss, // 0 - 255. |
| int64_t rtt_ms, |
| - int64_t probing_interval_ms) = 0; |
| + int64_t probinbweg_interval_ms) = 0; |
|
terelius
2017/06/02 12:14:05
Please fix :)
tschumi
2017/06/02 13:13:04
Done.
|
| protected: |
| virtual ~Observer() {} |
| @@ -141,6 +142,8 @@ class SendSideCongestionController : public CallStatsObserver, |
| RtcEventLog* const event_log_; |
| const std::unique_ptr<PacedSender> pacer_; |
| const std::unique_ptr<BitrateController> bitrate_controller_; |
| + const std::unique_ptr<AcknowledgedBitrateEstimator> |
| + acknowledged_bitrate_estimator_; |
| const std::unique_ptr<ProbeController> probe_controller_; |
| const std::unique_ptr<RateLimiter> retransmission_rate_limiter_; |
| TransportFeedbackAdapter transport_feedback_adapter_; |