| Index: net/quic/congestion_control/time_loss_algorithm.cc
|
| diff --git a/net/quic/congestion_control/time_loss_algorithm.cc b/net/quic/congestion_control/time_loss_algorithm.cc
|
| index 6cf1d81ae1cf5ee2c93d3c2bd581d00d5d481660..ae6c61dafceb0f5b4c39402628aa5ee75fc55ecd 100644
|
| --- a/net/quic/congestion_control/time_loss_algorithm.cc
|
| +++ b/net/quic/congestion_control/time_loss_algorithm.cc
|
| @@ -21,7 +21,8 @@ static const double kLossDelayMultiplier = 1.25;
|
| } // namespace
|
|
|
| TimeLossAlgorithm::TimeLossAlgorithm()
|
| - : loss_detection_timeout_(QuicTime::Zero()) { }
|
| + : loss_detection_timeout_(QuicTime::Zero()) {
|
| +}
|
|
|
| LossDetectionType TimeLossAlgorithm::GetLossDetectionType() const {
|
| return kTime;
|
| @@ -40,7 +41,8 @@ SequenceNumberSet TimeLossAlgorithm::DetectLostPackets(
|
| .Multiply(kLossDelayMultiplier));
|
|
|
| for (QuicUnackedPacketMap::const_iterator it = unacked_packets.begin();
|
| - it != unacked_packets.end() && it->first <= largest_observed; ++it) {
|
| + it != unacked_packets.end() && it->first <= largest_observed;
|
| + ++it) {
|
| if (!it->second.pending) {
|
| continue;
|
| }
|
|
|