Index: net/quic/congestion_control/tcp_cubic_sender.cc |
diff --git a/net/quic/congestion_control/tcp_cubic_sender.cc b/net/quic/congestion_control/tcp_cubic_sender.cc |
index 0366650898065f9512dee3ea9524b53d956c1f1d..7f6678de63eb23942263f7cd667c273fb1d21afe 100644 |
--- a/net/quic/congestion_control/tcp_cubic_sender.cc |
+++ b/net/quic/congestion_control/tcp_cubic_sender.cc |
@@ -34,9 +34,10 @@ const float kOneMinusBeta = (1 - kBeta); |
TcpCubicSender::TcpCubicSender( |
const QuicClock* clock, |
bool reno, |
- QuicTcpCongestionWindow max_tcp_congestion_window) |
+ QuicTcpCongestionWindow max_tcp_congestion_window, |
+ QuicConnectionStats* stats) |
: hybrid_slow_start_(clock), |
- cubic_(clock), |
+ cubic_(clock, stats), |
reno_(reno), |
congestion_window_count_(0), |
receive_window_(kDefaultReceiveWindow), |