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

Unified Diff: net/quic/quic_ack_notifier.cc

Issue 867293004: Rename QuicAckNotifier's AddSequenceNumber to OnSerializedPacket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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_ack_notifier.h ('k') | net/quic/quic_ack_notifier_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_ack_notifier.cc
diff --git a/net/quic/quic_ack_notifier.cc b/net/quic/quic_ack_notifier.cc
index b399a61bcc173541f22d65d49fe653caa6baa023..ad76aafa4dfd6299928a33aa9923c5330d51f5dd 100644
--- a/net/quic/quic_ack_notifier.cc
+++ b/net/quic/quic_ack_notifier.cc
@@ -29,11 +29,8 @@ QuicAckNotifier::QuicAckNotifier(DelegateInterface* delegate)
QuicAckNotifier::~QuicAckNotifier() {
}
-void QuicAckNotifier::AddSequenceNumber(
- const QuicPacketSequenceNumber& sequence_number,
- int packet_payload_size) {
+void QuicAckNotifier::OnSerializedPacket() {
++unacked_packets_;
- DVLOG(1) << "AckNotifier waiting for packet: " << sequence_number;
}
bool QuicAckNotifier::OnAck(QuicPacketSequenceNumber sequence_number,
« no previous file with comments | « net/quic/quic_ack_notifier.h ('k') | net/quic/quic_ack_notifier_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698