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 28f830222443ff55573693e605655c90696f215b..c11620c13cbe4d9b39c5af518baa36956fdafdb4 100644 |
--- a/net/quic/congestion_control/tcp_cubic_sender.h |
+++ b/net/quic/congestion_control/tcp_cubic_sender.h |
@@ -62,6 +62,7 @@ class NET_EXPORT_PRIVATE TcpCubicSender : public SendAlgorithmInterface { |
virtual QuicTime::Delta RetransmissionDelay() const OVERRIDE; |
virtual QuicByteCount GetCongestionWindow() const OVERRIDE; |
virtual bool InSlowStart() const OVERRIDE; |
+ virtual bool InRecovery() const OVERRIDE; |
virtual QuicByteCount GetSlowStartThreshold() const OVERRIDE; |
virtual CongestionControlType GetCongestionControlType() const OVERRIDE; |
// End implementation of SendAlgorithmInterface. |
@@ -80,7 +81,6 @@ class NET_EXPORT_PRIVATE TcpCubicSender : public SendAlgorithmInterface { |
void MaybeIncreaseCwnd(QuicPacketSequenceNumber acked_sequence_number, |
QuicByteCount bytes_in_flight); |
bool IsCwndLimited(QuicByteCount bytes_in_flight) const; |
- bool InRecovery() const; |
// Methods for isolating PRR from the rest of TCP Cubic. |
void PrrOnPacketLost(QuicByteCount bytes_in_flight); |
void PrrOnPacketAcked(QuicByteCount acked_bytes); |