Index: net/quic/congestion_control/fix_rate_sender.cc |
diff --git a/net/quic/congestion_control/fix_rate_sender.cc b/net/quic/congestion_control/fix_rate_sender.cc |
index 2ccbc8b90dbc66b635b0556d4aff92bd33e568fd..4e3f635cb8c9b3617ef7e447ff39957b70fb5560 100644 |
--- a/net/quic/congestion_control/fix_rate_sender.cc |
+++ b/net/quic/congestion_control/fix_rate_sender.cc |
@@ -61,7 +61,7 @@ void FixRateSender::SentPacket(QuicTime sent_time, |
Retransmission is_retransmission) { |
fix_rate_leaky_bucket_.Add(sent_time, bytes); |
paced_sender_.SentPacket(sent_time, bytes); |
- if (!is_retransmission) { |
+ if (is_retransmission == NOT_RETRANSMISSION) { |
data_in_flight_ += bytes; |
} |
} |