Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: net/quic/congestion_control/rtt_stats.cc

Issue 331573002: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix compiler error - use push_back to initialize vectors Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/quic/congestion_control/rtt_stats_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/congestion_control/rtt_stats.cc
diff --git a/net/quic/congestion_control/rtt_stats.cc b/net/quic/congestion_control/rtt_stats.cc
index 25e2fbfa5fdb3993ef7ea70dc618c159f6c96bf4..745deb58cb3d085cbfed94d73585e6f42d5c577a 100644
--- a/net/quic/congestion_control/rtt_stats.cc
+++ b/net/quic/congestion_control/rtt_stats.cc
@@ -26,7 +26,7 @@ RttStats::RttStats()
mean_deviation_(QuicTime::Delta::Zero()),
initial_rtt_us_(kInitialRttMs * base::Time::kMicrosecondsPerMillisecond),
num_min_rtt_samples_remaining_(0),
- recent_min_rtt_window_(QuicTime::Delta::Zero()) { }
+ recent_min_rtt_window_(QuicTime::Delta::Infinite()) {}
bool RttStats::HasUpdates() const {
return !smoothed_rtt_.IsZero();
« no previous file with comments | « no previous file | net/quic/congestion_control/rtt_stats_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698