Index: webrtc/base/rate_statistics.cc |
diff --git a/webrtc/base/rate_statistics.cc b/webrtc/base/rate_statistics.cc |
index 1fd63cc6d2a071251edb0a9f4f3744fd700571f2..3122dbb3e690611bbaf80b39711e9c336d74b60a 100644 |
--- a/webrtc/base/rate_statistics.cc |
+++ b/webrtc/base/rate_statistics.cc |
@@ -61,8 +61,10 @@ void RateStatistics::Update(size_t count, int64_t now_ms) { |
++num_samples_; |
} |
-rtc::Optional<uint32_t> RateStatistics::Rate(int64_t now_ms) { |
- EraseOld(now_ms); |
+rtc::Optional<uint32_t> RateStatistics::Rate(int64_t now_ms) const { |
+ // Yeah, this const_cast ain't pretty, but the alternative is to declare most |
+ // of the members as mutable... |
+ const_cast<RateStatistics*>(this)->EraseOld(now_ms); |
// If window is a single bucket or there is only one sample in a data set that |
// has not grown to the full window size, treat this as rate unavailable. |
@@ -112,7 +114,7 @@ bool RateStatistics::SetWindowSize(int64_t window_size_ms, int64_t now_ms) { |
return true; |
} |
-bool RateStatistics::IsInitialized() { |
+bool RateStatistics::IsInitialized() const { |
return oldest_time_ != -max_window_size_ms_; |
} |