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

Unified Diff: net/quic/quic_ack_notifier.h

Issue 242593002: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. Use uint32 instead of int Created 6 years, 8 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/congestion_control/tcp_cubic_sender_test.cc ('k') | net/quic/quic_ack_notifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_ack_notifier.h
diff --git a/net/quic/quic_ack_notifier.h b/net/quic/quic_ack_notifier.h
index a771930ced3c803dc24468955bb27812967a9c13..0c8474ac6e5247067b99b977592ea6ef911d448a 100644
--- a/net/quic/quic_ack_notifier.h
+++ b/net/quic/quic_ack_notifier.h
@@ -30,7 +30,8 @@ class NET_EXPORT_PRIVATE QuicAckNotifier {
virtual void OnAckNotification(int num_original_packets,
int num_original_bytes,
int num_retransmitted_packets,
- int num_retransmitted_bytes) = 0;
+ int num_retransmitted_bytes,
+ QuicTime::Delta delta_largest_observed) = 0;
protected:
friend class base::RefCounted<DelegateInterface>;
@@ -54,7 +55,8 @@ class NET_EXPORT_PRIVATE QuicAckNotifier {
//
// Returns true if the provided sequence_number caused the delegate to be
// called, false otherwise.
- bool OnAck(QuicPacketSequenceNumber sequence_number);
+ bool OnAck(QuicPacketSequenceNumber sequence_number,
+ QuicTime::Delta delta_largest_observed);
bool IsEmpty() { return sequence_numbers_.empty(); }
« no previous file with comments | « net/quic/congestion_control/tcp_cubic_sender_test.cc ('k') | net/quic/quic_ack_notifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698