| Index: net/quic/congestion_control/time_loss_algorithm.h
|
| diff --git a/net/quic/congestion_control/time_loss_algorithm.h b/net/quic/congestion_control/time_loss_algorithm.h
|
| index ae37e1e325831a92d32c22aace03097165811e72..de517ef01ec0373749fd4ccf49a3954543aad99a 100644
|
| --- a/net/quic/congestion_control/time_loss_algorithm.h
|
| +++ b/net/quic/congestion_control/time_loss_algorithm.h
|
| @@ -23,7 +23,7 @@ class NET_EXPORT_PRIVATE TimeLossAlgorithm : public LossDetectionInterface {
|
| TimeLossAlgorithm();
|
| virtual ~TimeLossAlgorithm() {}
|
|
|
| - virtual LossDetectionType GetLossDetectionType() const OVERRIDE;
|
| + virtual LossDetectionType GetLossDetectionType() const override;
|
|
|
| // Declares pending packets less than the largest observed lost when it has
|
| // been 1.25 RTT since they were sent. Packets larger than the largest
|
| @@ -32,14 +32,14 @@ class NET_EXPORT_PRIVATE TimeLossAlgorithm : public LossDetectionInterface {
|
| const QuicUnackedPacketMap& unacked_packets,
|
| const QuicTime& time,
|
| QuicPacketSequenceNumber largest_observed,
|
| - const RttStats& rtt_stats) OVERRIDE;
|
| + const RttStats& rtt_stats) override;
|
|
|
| // Returns the time the next packet will be lost, or zero if there
|
| // are no nacked pending packets outstanding.
|
| // TODO(ianswett): Ideally the RTT variance and the RTT would be used to
|
| // determine the time a packet is considered lost.
|
| // TODO(ianswett): Consider using Max(1.25 * srtt, 1.125 * last_rtt).
|
| - virtual QuicTime GetLossTimeout() const OVERRIDE;
|
| + virtual QuicTime GetLossTimeout() const override;
|
|
|
| private:
|
| QuicTime loss_detection_timeout_;
|
|
|