| Index: net/quic/quic_sent_packet_manager.h
|
| diff --git a/net/quic/quic_sent_packet_manager.h b/net/quic/quic_sent_packet_manager.h
|
| index 84294d19d26226cfe77c8d2a6ff47e518bbbd6e2..cf0781410dea33dde4d55d14c99892649f59297f 100644
|
| --- a/net/quic/quic_sent_packet_manager.h
|
| +++ b/net/quic/quic_sent_packet_manager.h
|
| @@ -377,9 +377,9 @@ class NET_EXPORT_PRIVATE QuicSentPacketManager {
|
| size_t max_tail_loss_probes_;
|
| bool using_pacing_;
|
|
|
| - // Sets of packets acked and lost as a result of the last congestion event.
|
| - SendAlgorithmInterface::CongestionMap packets_acked_;
|
| - SendAlgorithmInterface::CongestionMap packets_lost_;
|
| + // Vectors packets acked and lost as a result of the last congestion event.
|
| + SendAlgorithmInterface::CongestionVector packets_acked_;
|
| + SendAlgorithmInterface::CongestionVector packets_lost_;
|
|
|
| // Set to true after the crypto handshake has successfully completed. After
|
| // this is true we no longer use HANDSHAKE_MODE, and further frames sent on
|
|
|