| Index: webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h
 | 
| diff --git a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h
 | 
| index 402d22a6bf4378a18a567d658412461100d6bccf..c97714f7e863ae0c5cc941dca38e723408e6d4b3 100644
 | 
| --- a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h
 | 
| +++ b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h
 | 
| @@ -26,7 +26,8 @@ class RtcEventLog;
 | 
|  
 | 
|  class SendSideBandwidthEstimation {
 | 
|   public:
 | 
| -  SendSideBandwidthEstimation();
 | 
| +  SendSideBandwidthEstimation() = delete;
 | 
| +  explicit SendSideBandwidthEstimation(RtcEventLog* event_log);
 | 
|    virtual ~SendSideBandwidthEstimation();
 | 
|  
 | 
|    void CurrentEstimate(int* bitrate, uint8_t* loss, int64_t* rtt) const;
 | 
| @@ -53,8 +54,6 @@ class SendSideBandwidthEstimation {
 | 
|    void SetMinMaxBitrate(int min_bitrate, int max_bitrate);
 | 
|    int GetMinBitrate() const;
 | 
|  
 | 
| -  void SetEventLog(RtcEventLog* event_log);
 | 
| -
 | 
|   private:
 | 
|    enum UmaState { kNoUpdate, kFirstDone, kDone };
 | 
|  
 | 
| 
 |