| 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 15894f939543d265309d109693ece2778db8f17c..0207fd1c645a6d8d216ecd617dbdfecf142e8aef 100644
|
| --- a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h
|
| +++ b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h
|
| @@ -26,7 +26,7 @@ class RtcEventLog;
|
|
|
| class SendSideBandwidthEstimation {
|
| public:
|
| - SendSideBandwidthEstimation();
|
| + SendSideBandwidthEstimation(RtcEventLog* event_log);
|
| virtual ~SendSideBandwidthEstimation();
|
|
|
| void CurrentEstimate(int* bitrate, uint8_t* loss, int64_t* rtt) const;
|
| @@ -50,8 +50,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 };
|
|
|
|
|