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

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

Issue 2127153002: Allow WindowedFilter to use arbitrary time type instead of QuicTime. No functional change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@126423259
Patch Set: Created 4 years, 5 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 | « net/quic/congestion_control/rtt_stats.h ('k') | net/quic/congestion_control/windowed_filter.h » ('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 9d31caaa3889d7528508c6e2c6990c7a2abd337d..86eb3abb7e70ae01445cefd113c0d0b6d0bbcca0 100644
--- a/net/quic/congestion_control/rtt_stats.cc
+++ b/net/quic/congestion_control/rtt_stats.cc
@@ -37,7 +37,8 @@ RttStats::RttStats()
num_samples_for_forced_min_(0),
windowed_min_rtt_(
QuicTime::Delta::FromMilliseconds(kMinRttWindowLengthMs),
- QuicTime::Delta::Zero()) {}
+ QuicTime::Delta::Zero(),
+ QuicTime::Zero()) {}
void RttStats::SampleNewWindowedMinRtt(uint32_t num_samples) {
num_samples_for_forced_min_ = num_samples;
« no previous file with comments | « net/quic/congestion_control/rtt_stats.h ('k') | net/quic/congestion_control/windowed_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698