| Index: net/quic/congestion_control/tcp_cubic_sender_bytes.cc
|
| diff --git a/net/quic/congestion_control/tcp_cubic_sender_bytes.cc b/net/quic/congestion_control/tcp_cubic_sender_bytes.cc
|
| index 5f0dbcba2aba2d3c0c87371f7b9e084231d19a87..012bf043e11a2c1629531ad0de1acceda5c1aadb 100644
|
| --- a/net/quic/congestion_control/tcp_cubic_sender_bytes.cc
|
| +++ b/net/quic/congestion_control/tcp_cubic_sender_bytes.cc
|
| @@ -116,7 +116,9 @@ void TcpCubicSenderBytes::OnPacketLost(QuicPacketNumber packet_number,
|
| ++stats_->slowstart_packets_lost;
|
| }
|
|
|
| - prr_.OnPacketLost(bytes_in_flight);
|
| + if (!no_prr_) {
|
| + prr_.OnPacketLost(bytes_in_flight);
|
| + }
|
|
|
| // TODO(jri): Separate out all of slow start into a separate class.
|
| if (slow_start_large_reduction_ && InSlowStart()) {
|
|
|