| Index: net/quic/core/congestion_control/tcp_cubic_sender_base.h
|
| diff --git a/net/quic/core/congestion_control/tcp_cubic_sender_base.h b/net/quic/core/congestion_control/tcp_cubic_sender_base.h
|
| index f04eb74630818741646e2c20f8d88d48785598c7..a4ac1e57128b796c2eb154849466a9e6ecba28e6 100644
|
| --- a/net/quic/core/congestion_control/tcp_cubic_sender_base.h
|
| +++ b/net/quic/core/congestion_control/tcp_cubic_sender_base.h
|
| @@ -95,7 +95,8 @@ class QUIC_EXPORT_PRIVATE TcpCubicSenderBase : public SendAlgorithmInterface {
|
| // window.
|
| virtual void MaybeIncreaseCwnd(QuicPacketNumber acked_packet_number,
|
| QuicByteCount acked_bytes,
|
| - QuicByteCount prior_in_flight) = 0;
|
| + QuicByteCount prior_in_flight,
|
| + QuicTime event_time) = 0;
|
|
|
| // Called when a retransmission has occured which resulted in packets
|
| // being retransmitted.
|
| @@ -112,7 +113,8 @@ class QUIC_EXPORT_PRIVATE TcpCubicSenderBase : public SendAlgorithmInterface {
|
| // TODO(ianswett): Remove these and migrate to OnCongestionEvent.
|
| void OnPacketAcked(QuicPacketNumber acked_packet_number,
|
| QuicByteCount acked_bytes,
|
| - QuicByteCount prior_in_flight);
|
| + QuicByteCount prior_in_flight,
|
| + QuicTime event_time);
|
|
|
| protected:
|
| // TODO(rch): Make these private and clean up subclass access to them.
|
|
|