Index: net/quic/congestion_control/paced_sender.cc |
diff --git a/net/quic/congestion_control/paced_sender.cc b/net/quic/congestion_control/paced_sender.cc |
index 87042a5a23ad9d9281097cc859003360b7acf5f2..5b092e4648b7fffe2b305e36bab5fc0a622698ee 100644 |
--- a/net/quic/congestion_control/paced_sender.cc |
+++ b/net/quic/congestion_control/paced_sender.cc |
@@ -42,7 +42,7 @@ QuicTime::Delta PacedSender::TimeUntilSend(QuicTime now, |
// Pace the data. |
QuicByteCount pacing_window = pace_.ToBytesPerPeriod( |
QuicTime::Delta::FromMicroseconds(kMaxSchedulingDelayUs)); |
- QuicByteCount min_window_size = kMinPacketBurstSize * max_segment_size_; |
+ QuicByteCount min_window_size = kMinPacketBurstSize * max_segment_size_; |
pacing_window = max(pacing_window, min_window_size); |
if (pacing_window > leaky_bucket_.BytesPending(now)) { |