| Index: webrtc/modules/congestion_controller/delay_based_bwe.h | 
| diff --git a/webrtc/modules/congestion_controller/delay_based_bwe.h b/webrtc/modules/congestion_controller/delay_based_bwe.h | 
| index c5f0f6182805bfa80c3e0dec2ee3d0b86b1c3a65..5ae60f7d21255480eb95fe2ebb65c64087f60434 100644 | 
| --- a/webrtc/modules/congestion_controller/delay_based_bwe.h | 
| +++ b/webrtc/modules/congestion_controller/delay_based_bwe.h | 
| @@ -46,7 +46,7 @@ class DelayBasedBwe { | 
| uint32_t target_bitrate_bps; | 
| }; | 
|  | 
| -  DelayBasedBwe(RtcEventLog* event_log, Clock* clock); | 
| +  DelayBasedBwe(RtcEventLog* event_log, const Clock* clock); | 
| virtual ~DelayBasedBwe() {} | 
|  | 
| Result IncomingPacketFeedbackVector( | 
| @@ -94,7 +94,7 @@ class DelayBasedBwe { | 
|  | 
| rtc::ThreadChecker network_thread_; | 
| RtcEventLog* const event_log_; | 
| -  Clock* const clock_; | 
| +  const Clock* const clock_; | 
| std::unique_ptr<InterArrival> inter_arrival_; | 
| std::unique_ptr<OveruseEstimator> kalman_estimator_; | 
| std::unique_ptr<TrendlineEstimator> trendline_estimator_; | 
|  |