Index: net/quic/congestion_control/tcp_cubic_sender_packets.h |
diff --git a/net/quic/congestion_control/tcp_cubic_sender_packets.h b/net/quic/congestion_control/tcp_cubic_sender_packets.h |
index 5a89df836752f1a70830bd4532eb3261cf8b7c92..610e75e12b2d9f5fa2074e2fa3b5d466d67d0dfc 100644 |
--- a/net/quic/congestion_control/tcp_cubic_sender_packets.h |
+++ b/net/quic/congestion_control/tcp_cubic_sender_packets.h |
@@ -49,6 +49,8 @@ class NET_EXPORT_PRIVATE TcpCubicSenderPackets : public TcpCubicSenderBase { |
CongestionControlType GetCongestionControlType() const override; |
// End implementation of SendAlgorithmInterface. |
+ QuicByteCount min_congestion_window() const { return min_congestion_window_; } |
+ |
protected: |
// TcpCubicSenderBase methods |
void SetCongestionWindowFromBandwidthAndRtt(QuicBandwidth bandwidth, |
@@ -93,6 +95,9 @@ class NET_EXPORT_PRIVATE TcpCubicSenderPackets : public TcpCubicSenderBase { |
// this algorithm is created. |
const QuicPacketCount initial_max_tcp_congestion_window_; |
+ // The minimum window when exiting slow start with large reduction. |
+ QuicPacketCount min_slow_start_exit_window_; |
+ |
DISALLOW_COPY_AND_ASSIGN(TcpCubicSenderPackets); |
}; |