| Index: net/quic/congestion_control/tcp_cubic_sender_base.cc
|
| diff --git a/net/quic/congestion_control/tcp_cubic_sender_base.cc b/net/quic/congestion_control/tcp_cubic_sender_base.cc
|
| index 51e9bed1492479166ef1b672e45f4dbbd3381dde..7f9b3cbffead7b2ab5d2d1665e9483edad5b520c 100644
|
| --- a/net/quic/congestion_control/tcp_cubic_sender_base.cc
|
| +++ b/net/quic/congestion_control/tcp_cubic_sender_base.cc
|
| @@ -175,13 +175,7 @@ bool TcpCubicSenderBase::OnPacketSent(
|
|
|
| QuicTime::Delta TcpCubicSenderBase::TimeUntilSend(
|
| QuicTime /* now */,
|
| - QuicByteCount bytes_in_flight,
|
| - HasRetransmittableData has_retransmittable_data) const {
|
| - if (has_retransmittable_data == NO_RETRANSMITTABLE_DATA) {
|
| - QUIC_BUG << "TimeUntilSend's has_retransmittable_data argument deprecated.";
|
| - // For TCP we can always send an ACK immediately.
|
| - return QuicTime::Delta::Zero();
|
| - }
|
| + QuicByteCount bytes_in_flight) const {
|
| if (InRecovery()) {
|
| // PRR is used when in recovery.
|
| return prr_.TimeUntilSend(GetCongestionWindow(), bytes_in_flight,
|
|
|