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

Unified Diff: net/quic/quic_sent_packet_manager.h

Issue 25443002: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix to change SendAlarm crash Created 7 years, 2 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
« no previous file with comments | « net/quic/quic_connection_test.cc ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4c755b6e2d02ff3d0f039edc13211b6fa87c6170..4987bccf3f9e2f084cdbd998ed010abd36245ec5 100644
--- a/net/quic/quic_sent_packet_manager.h
+++ b/net/quic/quic_sent_packet_manager.h
@@ -15,6 +15,7 @@
#include "base/containers/hash_tables.h"
#include "net/base/linked_hash_map.h"
+#include "net/quic/quic_ack_notifier_manager.h"
#include "net/quic/quic_protocol.h"
NET_EXPORT_PRIVATE extern bool FLAGS_track_retransmission_history;
@@ -246,6 +247,11 @@ class NET_EXPORT_PRIVATE QuicSentPacketManager {
HelperInterface* helper_;
+ // An AckNotifier can register to be informed when ACKs have been received for
+ // all packets that a given block of data was sent in. The AckNotifierManager
+ // maintains the currently active notifiers.
+ AckNotifierManager ack_notifier_manager_;
+
DISALLOW_COPY_AND_ASSIGN(QuicSentPacketManager);
};
« no previous file with comments | « net/quic/quic_connection_test.cc ('k') | net/quic/quic_sent_packet_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698