Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1293)

Unified Diff: net/quic/quic_received_packet_manager.h

Issue 478153003: Change the wire format of the ack frame to include a compressed version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/quic/quic_received_packet_manager.h
diff --git a/net/quic/quic_received_packet_manager.h b/net/quic/quic_received_packet_manager.h
index 92c08f55c14113d182e388df2a352fc1e3e90156..57a1175d28e9dc7b482b88ec482322ef961132fc 100644
--- a/net/quic/quic_received_packet_manager.h
+++ b/net/quic/quic_received_packet_manager.h
@@ -11,6 +11,7 @@
#include <deque>
#include "net/quic/congestion_control/receive_algorithm_interface.h"
+#include "net/quic/quic_config.h"
#include "net/quic/quic_framer.h"
#include "net/quic/quic_protocol.h"
@@ -94,8 +95,7 @@ class NET_EXPORT_PRIVATE QuicReceivedPacketManager :
DISALLOW_COPY_AND_ASSIGN(EntropyTracker);
};
- explicit QuicReceivedPacketManager(CongestionFeedbackType congestion_type,
- QuicConnectionStats* stats);
+ explicit QuicReceivedPacketManager(QuicConnectionStats* stats);
virtual ~QuicReceivedPacketManager();
// Updates the internal state concerning which packets have been received.
@@ -172,6 +172,8 @@ class NET_EXPORT_PRIVATE QuicReceivedPacketManager :
QuicConnectionStats* stats_;
+ PacketTimeList received_packet_times_;
+
DISALLOW_COPY_AND_ASSIGN(QuicReceivedPacketManager);
};

Powered by Google App Engine
This is Rietveld 408576698