Index: net/quic/congestion_control/hybrid_slow_start.cc |
diff --git a/net/quic/congestion_control/hybrid_slow_start.cc b/net/quic/congestion_control/hybrid_slow_start.cc |
index 5f334c74ed6d35b30eceac0314fe1932853df681..67743969065efe01ac8b982ca30bc5795b1516ce 100644 |
--- a/net/quic/congestion_control/hybrid_slow_start.cc |
+++ b/net/quic/congestion_control/hybrid_slow_start.cc |
@@ -94,7 +94,7 @@ bool HybridSlowStart::ShouldExitSlowStart(QuicTime::Delta latest_rtt, |
QuicTime::Delta::FromMicroseconds(max(min_rtt_increase_threshold_us, |
kHybridStartDelayMinThresholdUs)); |
- if (current_min_rtt_ > min_rtt.Add(min_rtt_increase_threshold)) { |
+ if (current_min_rtt_ > min_rtt + min_rtt_increase_threshold) { |
hystart_found_ = DELAY; |
} |
} |