| Index: webrtc/modules/congestion_controller/congestion_controller.cc | 
| diff --git a/webrtc/modules/congestion_controller/congestion_controller.cc b/webrtc/modules/congestion_controller/congestion_controller.cc | 
| index accc1411f995487895f1ba35bb1851538c83948b..5a11f3242f014d1bb1bbc78daab9d93dd865796e 100644 | 
| --- a/webrtc/modules/congestion_controller/congestion_controller.cc | 
| +++ b/webrtc/modules/congestion_controller/congestion_controller.cc | 
| @@ -275,6 +275,10 @@ RateLimiter* CongestionController::GetRetransmissionRateLimiter() { | 
| return retransmission_rate_limiter_.get(); | 
| } | 
|  | 
| +void CongestionController::EnablePeriodicAlrProbing(bool enable) { | 
| +  probe_controller_->EnablePeriodicAlrProbing(enable); | 
| +} | 
| + | 
| void CongestionController::SetAllocatedSendBitrateLimits( | 
| int min_send_bitrate_bps, | 
| int max_padding_bitrate_bps) { | 
| @@ -319,6 +323,7 @@ int64_t CongestionController::TimeUntilNextProcess() { | 
| void CongestionController::Process() { | 
| bitrate_controller_->Process(); | 
| remote_bitrate_estimator_->Process(); | 
| +  probe_controller_->Process(); | 
| MaybeTriggerOnNetworkChanged(); | 
| } | 
|  | 
|  |