Index: net/quic/congestion_control/tcp_cubic_sender.cc |
diff --git a/net/quic/congestion_control/tcp_cubic_sender.cc b/net/quic/congestion_control/tcp_cubic_sender.cc |
index 847351e3ed5788393952f4e44cc85e795b81fb1d..6cfe0fb7b6d7970316997c7fde51ca2c742c4333 100644 |
--- a/net/quic/congestion_control/tcp_cubic_sender.cc |
+++ b/net/quic/congestion_control/tcp_cubic_sender.cc |
@@ -215,7 +215,7 @@ QuicTime::Delta TcpCubicSender::TimeUntilSend( |
if (InRecovery()) { |
// PRR is used when in recovery. |
return prr_.TimeUntilSend(GetCongestionWindow(), bytes_in_flight, |
- slowstart_threshold_); |
+ slowstart_threshold_ * kMaxSegmentSize); |
} |
if (GetCongestionWindow() > bytes_in_flight) { |
return QuicTime::Delta::Zero(); |