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

Unified Diff: net/quic/quic_ack_notifier_test.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_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_ack_notifier_test.cc
diff --git a/net/quic/quic_ack_notifier_test.cc b/net/quic/quic_ack_notifier_test.cc
index 21c876665857ed3de03429c3aa672e654af3b23e..5afbd6f5112e108c73ea50a095c34001bd735cbb 100644
--- a/net/quic/quic_ack_notifier_test.cc
+++ b/net/quic/quic_ack_notifier_test.cc
@@ -22,9 +22,9 @@ class QuicAckNotifierTest : public ::testing::Test {
delegate_ = new MockAckNotifierDelegate;
notifier_.reset(new QuicAckNotifier(delegate_));
- notifier_->AddSequenceNumber(26, 100);
- notifier_->AddSequenceNumber(99, 20);
- notifier_->AddSequenceNumber(1234, 3);
+ notifier_->OnSerializedPacket();
+ notifier_->OnSerializedPacket();
+ notifier_->OnSerializedPacket();
}
MockAckNotifierDelegate* delegate_;
« no previous file with comments | « net/quic/quic_ack_notifier_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698