Index: webrtc/modules/congestion_controller/probing_interval_estimator.h |
diff --git a/webrtc/modules/congestion_controller/probing_interval_estimator.h b/webrtc/modules/congestion_controller/probing_interval_estimator.h |
index daa6b91a8cae7dc76b82bbc16a0c02ad45f7c345..5af56599f0c5ecca44850696a82a800d7f166bce 100644 |
--- a/webrtc/modules/congestion_controller/probing_interval_estimator.h |
+++ b/webrtc/modules/congestion_controller/probing_interval_estimator.h |
@@ -21,14 +21,14 @@ class ProbingIntervalEstimator { |
public: |
explicit ProbingIntervalEstimator(const AimdRateControl* aimd_rate_control); |
- ProbingIntervalEstimator(int min_interval_ms, |
- int max_interval_ms, |
+ ProbingIntervalEstimator(int64_t min_interval_ms, |
+ int64_t max_interval_ms, |
const AimdRateControl* aimd_rate_control); |
- rtc::Optional<int> GetIntervalMs() const; |
+ rtc::Optional<int64_t> GetIntervalMs() const; |
private: |
- const int min_interval_ms_; |
- const int max_interval_ms_; |
+ const int64_t min_interval_ms_; |
+ const int64_t max_interval_ms_; |
const AimdRateControl* const aimd_rate_control_; |
RTC_DISALLOW_COPY_AND_ASSIGN(ProbingIntervalEstimator); |
}; |