Index: net/quic/congestion_control/tcp_loss_algorithm.cc |
diff --git a/net/quic/congestion_control/tcp_loss_algorithm.cc b/net/quic/congestion_control/tcp_loss_algorithm.cc |
index e609122dea5b7fc907b162f77bf27aa42f79f006..6cf56d8f9d42ebe7a667b088593063783ff75665 100644 |
--- a/net/quic/congestion_control/tcp_loss_algorithm.cc |
+++ b/net/quic/congestion_control/tcp_loss_algorithm.cc |
@@ -31,7 +31,7 @@ SequenceNumberSet TCPLossAlgorithm::DetectLostPackets( |
SequenceNumberSet lost_packets; |
loss_detection_timeout_ = QuicTime::Zero(); |
QuicTime::Delta loss_delay = |
- rtt_stats.SmoothedRtt().Multiply(kEarlyRetransmitLossDelayMultiplier); |
+ rtt_stats.smoothed_rtt().Multiply(kEarlyRetransmitLossDelayMultiplier); |
QuicPacketSequenceNumber sequence_number = unacked_packets.GetLeastUnacked(); |
for (QuicUnackedPacketMap::const_iterator it = unacked_packets.begin(); |
it != unacked_packets.end() && sequence_number <= largest_observed; |