Index: net/quic/congestion_control/tcp_cubic_sender_bytes.h |
diff --git a/net/quic/congestion_control/tcp_cubic_sender_bytes.h b/net/quic/congestion_control/tcp_cubic_sender_bytes.h |
index d31cc1df1303883859cd29154615551c22d3d436..e7a0765a0bd6b9da16bbdcf50790c0ef2b9f45c6 100644 |
--- a/net/quic/congestion_control/tcp_cubic_sender_bytes.h |
+++ b/net/quic/congestion_control/tcp_cubic_sender_bytes.h |
@@ -47,6 +47,8 @@ class NET_EXPORT_PRIVATE TcpCubicSenderBytes : 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, |
@@ -91,6 +93,9 @@ class NET_EXPORT_PRIVATE TcpCubicSenderBytes : public TcpCubicSenderBase { |
// set when this algorithm is created. |
const QuicByteCount initial_max_tcp_congestion_window_; |
+ // The minimum window when exiting slow start with large reduction. |
+ QuicByteCount min_slow_start_exit_window_; |
+ |
DISALLOW_COPY_AND_ASSIGN(TcpCubicSenderBytes); |
}; |