| 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 80f07f50ad7eafc035d9837927ae62afa31e8b16..dd7e7aee5c31f7a98cb3a8a2ad82e4255dd63a86 100644
|
| --- a/net/quic/congestion_control/tcp_cubic_sender.cc
|
| +++ b/net/quic/congestion_control/tcp_cubic_sender.cc
|
| @@ -345,4 +345,8 @@ QuicTime::Delta TcpCubicSender::PrrTimeUntilSend(
|
| return QuicTime::Delta::Infinite();
|
| }
|
|
|
| +CongestionControlType TcpCubicSender::GetCongestionControlType() const {
|
| + return reno_ ? kReno : kCubic;
|
| +}
|
| +
|
| } // namespace net
|
|
|