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

Unified Diff: net/quic/congestion_control/inter_arrival_sender_test.cc

Issue 15937012: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small bug fixes Created 7 years, 7 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/congestion_control/inter_arrival_sender_test.cc
diff --git a/net/quic/congestion_control/inter_arrival_sender_test.cc b/net/quic/congestion_control/inter_arrival_sender_test.cc
index 95947802cee9e8983e78ca0c6b546b391ab69f4d..e44be092ea7c2ae6bc4e3d7007dff99e471dbae2 100644
--- a/net/quic/congestion_control/inter_arrival_sender_test.cc
+++ b/net/quic/congestion_control/inter_arrival_sender_test.cc
@@ -72,8 +72,8 @@ class InterArrivalSenderTest : public ::testing::Test {
feedback_sequence_number_, receive_time));
feedback_sequence_number_++;
- sender_.OnIncomingQuicCongestionFeedbackFrame(
- feedback, send_clock_.Now(), QuicBandwidth::Zero(), sent_packets_);
+ sender_.OnIncomingQuicCongestionFeedbackFrame(feedback, send_clock_.Now(),
+ sent_packets_);
}
void SendFeedbackMessageNPackets(int n,
@@ -95,7 +95,7 @@ class InterArrivalSenderTest : public ::testing::Test {
feedback_sequence_number_++;
}
sender_.OnIncomingQuicCongestionFeedbackFrame(feedback, send_clock_.Now(),
- QuicBandwidth::Zero(), sent_packets_);
+ sent_packets_);
}
QuicTime::Delta SenderDeltaSinceStart() {

Powered by Google App Engine
This is Rietveld 408576698