| Index: webrtc/modules/remote_bitrate_estimator/overuse_detector.h
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector.h b/webrtc/modules/remote_bitrate_estimator/overuse_detector.h
|
| index bb69a8a0a1060e2554c84ebf19f498fab2048af3..dbce2ddc0b3095645a32cb0db58a9ba0e919e0d7 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector.h
|
| +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector.h
|
| @@ -24,7 +24,7 @@ bool AdaptiveThresholdExperimentIsEnabled();
|
|
|
| class OveruseDetector {
|
| public:
|
| - explicit OveruseDetector(const OverUseDetectorOptions& options);
|
| + OveruseDetector();
|
| virtual ~OveruseDetector();
|
|
|
| // Update the detection state based on the estimated inter-arrival time delta
|
| @@ -51,7 +51,6 @@ class OveruseDetector {
|
| double overusing_time_threshold_;
|
| // Must be first member variable. Cannot be const because we need to be
|
| // copyable.
|
| - webrtc::OverUseDetectorOptions options_;
|
| double threshold_;
|
| int64_t last_update_ms_;
|
| double prev_offset_;
|
|
|