| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_QUIC_CONGESTION_CONTROL_TCP_LOSS_ALGORITHM_H_ | 5 #ifndef NET_QUIC_CONGESTION_CONTROL_TCP_LOSS_ALGORITHM_H_ |
| 6 #define NET_QUIC_CONGESTION_CONTROL_TCP_LOSS_ALGORITHM_H_ | 6 #define NET_QUIC_CONGESTION_CONTROL_TCP_LOSS_ALGORITHM_H_ |
| 7 | 7 |
| 8 #include <algorithm> | 8 #include <algorithm> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 const QuicUnackedPacketMap& unacked_packets, | 30 const QuicUnackedPacketMap& unacked_packets, |
| 31 const QuicTime& time, | 31 const QuicTime& time, |
| 32 QuicPacketSequenceNumber largest_observed, | 32 QuicPacketSequenceNumber largest_observed, |
| 33 const RttStats& rtt_stats) OVERRIDE; | 33 const RttStats& rtt_stats) OVERRIDE; |
| 34 | 34 |
| 35 // Returns a non-zero value when the early retransmit timer is active. | 35 // Returns a non-zero value when the early retransmit timer is active. |
| 36 virtual QuicTime GetLossTimeout() const OVERRIDE; | 36 virtual QuicTime GetLossTimeout() const OVERRIDE; |
| 37 | 37 |
| 38 private: | 38 private: |
| 39 QuicTime loss_detection_timeout_; | 39 QuicTime loss_detection_timeout_; |
| 40 |
| 41 DISALLOW_COPY_AND_ASSIGN(TCPLossAlgorithm); |
| 40 }; | 42 }; |
| 41 | 43 |
| 42 } // namespace net | 44 } // namespace net |
| 43 | 45 |
| 44 #endif // NET_QUIC_CONGESTION_CONTROL_TCP_LOSS_ALGORITHM_H_ | 46 #endif // NET_QUIC_CONGESTION_CONTROL_TCP_LOSS_ALGORITHM_H_ |
| OLD | NEW |