Index: net/quic/congestion_control/tcp_cubic_sender.h |
diff --git a/net/quic/congestion_control/tcp_cubic_sender.h b/net/quic/congestion_control/tcp_cubic_sender.h |
index 85f098802c7f5711a7f160681b1a946dc9690147..69430444da98710404c36f2695c88d147cb2c9cd 100644 |
--- a/net/quic/congestion_control/tcp_cubic_sender.h |
+++ b/net/quic/congestion_control/tcp_cubic_sender.h |
@@ -42,11 +42,14 @@ class NET_EXPORT_PRIVATE TcpCubicSender : public SendAlgorithmInterface { |
virtual void SentPacket(QuicTime sent_time, |
QuicPacketSequenceNumber sequence_number, |
QuicByteCount bytes, |
- bool is_retransmission, |
- bool has_retransmittable_data) OVERRIDE; |
+ bool is_retransmission) OVERRIDE; |
+ virtual void AbandoningPacket(QuicPacketSequenceNumber sequence_number, |
+ QuicByteCount abandoned_bytes) OVERRIDE; |
virtual QuicTime::Delta TimeUntilSend(QuicTime now, |
- bool is_retransmission) OVERRIDE; |
+ bool is_retransmission, |
+ bool has_retransmittable_data) OVERRIDE; |
virtual QuicBandwidth BandwidthEstimate() OVERRIDE; |
+ virtual QuicTime::Delta SmoothedRtt() OVERRIDE; |
// End implementation of SendAlgorithmInterface. |
private: |