Index: net/quic/congestion_control/tcp_cubic_sender.h |
diff --git a/net/quic/congestion_control/tcp_cubic_sender.h b/net/quic/congestion_control/tcp_cubic_sender.h |
index d8560e38caa009316af501b1e191e70b41faa017..757934b479b2f176e6b1e9bca1d693f217ba3743 100644 |
--- a/net/quic/congestion_control/tcp_cubic_sender.h |
+++ b/net/quic/congestion_control/tcp_cubic_sender.h |
@@ -2,8 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
// |
-// TCP cubic send side congestion algorithm, emulates the behavior of |
-// TCP cubic. |
+// TCP cubic send side congestion algorithm, emulates the behavior of TCP cubic. |
#ifndef NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ |
#define NET_QUIC_CONGESTION_CONTROL_TCP_CUBIC_SENDER_H_ |
@@ -114,6 +113,9 @@ class NET_EXPORT_PRIVATE TcpCubicSender : public SendAlgorithmInterface { |
// Congestion window in packets. |
QuicPacketCount congestion_window_; |
+ // Minimum congestion window in packets. |
+ QuicPacketCount min_congestion_window_; |
+ |
// Slow start congestion window in packets, aka ssthresh. |
QuicPacketCount slowstart_threshold_; |