| Index: net/quic/quic_unacked_packet_map.h
|
| diff --git a/net/quic/quic_unacked_packet_map.h b/net/quic/quic_unacked_packet_map.h
|
| index a7a0a6cc54264ec5207bf77f84b18c98623b1926..51cc6346df24b393caca4800fdd0a121947da799 100644
|
| --- a/net/quic/quic_unacked_packet_map.h
|
| +++ b/net/quic/quic_unacked_packet_map.h
|
| @@ -86,9 +86,9 @@ class NET_EXPORT_PRIVATE QuicUnackedPacketMap {
|
| // Restores the in flight status for a packet that was previously sent.
|
| void RestoreInFlight(QuicPacketSequenceNumber sequence_number);
|
|
|
| - // Clears up to |num_to_clear| previous transmissions in order to make room
|
| - // in the ack frame for new acks.
|
| - void ClearPreviousRetransmissions(size_t num_to_clear);
|
| + // Clears all previous transmissions in order to make room in the ack frame
|
| + // for newly acked packets.
|
| + void ClearAllPreviousRetransmissions();
|
|
|
| typedef std::deque<TransmissionInfo> UnackedPacketMap;
|
|
|
|
|