| Index: net/quic/congestion_control/send_algorithm_interface.cc
|
| diff --git a/net/quic/congestion_control/send_algorithm_interface.cc b/net/quic/congestion_control/send_algorithm_interface.cc
|
| index e5c33299825cab65d0b438790be2f6a9e5fb9693..847681989f5ca38f2ef3fbcd5b51a283822db0a8 100644
|
| --- a/net/quic/congestion_control/send_algorithm_interface.cc
|
| +++ b/net/quic/congestion_control/send_algorithm_interface.cc
|
| @@ -22,8 +22,8 @@ SendAlgorithmInterface* SendAlgorithmInterface::Create(
|
| QuicConnectionStats* stats) {
|
| switch (type) {
|
| case kTCP:
|
| - return new TcpCubicSender(clock, rtt_stats, kUseReno,
|
| - kMaxTcpCongestionWindow, stats);
|
| + return new TcpCubicSender(
|
| + clock, rtt_stats, kUseReno, kMaxTcpCongestionWindow, stats);
|
| case kInterArrival:
|
| LOG(DFATAL) << "InterArrivalSendAlgorithm no longer supported.";
|
| return NULL;
|
|
|