Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: net/quic/congestion_control/tcp_cubic_sender_bytes.h

Issue 1918953003: Landing Recent QUIC changes until 4/22/2016 14:55 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Deleted SpdyFramerTests missed while mergeing 120451808 Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};
« no previous file with comments | « net/quic/congestion_control/general_loss_algorithm_test.cc ('k') | net/quic/congestion_control/tcp_cubic_sender_bytes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698