summaryrefslogtreecommitdiff
path: root/chromium/net/quic/core/quic_unacked_packet_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/quic/core/quic_unacked_packet_map.h')
-rw-r--r--chromium/net/quic/core/quic_unacked_packet_map.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chromium/net/quic/core/quic_unacked_packet_map.h b/chromium/net/quic/core/quic_unacked_packet_map.h
index 0bafe98f6b1..30091975f5d 100644
--- a/chromium/net/quic/core/quic_unacked_packet_map.h
+++ b/chromium/net/quic/core/quic_unacked_packet_map.h
@@ -128,6 +128,9 @@ class QUIC_EXPORT_PRIVATE QuicUnackedPacketMap {
// Returns the time that the last unacked packet was sent.
QuicTime GetLastPacketSentTime() const;
+ // Returns the time that the last unacked crypto packet was sent.
+ QuicTime GetLastCryptoPacketSentTime() const;
+
// Returns the number of unacked packets.
size_t GetNumUnackedPacketsDebugOnly() const;
@@ -213,6 +216,9 @@ class QUIC_EXPORT_PRIVATE QuicUnackedPacketMap {
// Number of retransmittable crypto handshake packets.
size_t pending_crypto_packet_count_;
+ // Time that the last unacked crypto packet was sent.
+ QuicTime last_crypto_packet_sent_time_;
+
// Receives notifications of frames being retransmitted or acknowledged.
SessionNotifierInterface* session_notifier_;