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

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

Issue 11820005: Largest received -> largest observed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 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/quic_send_scheduler.cc ('k') | net/quic/quic_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/congestion_control/quic_send_scheduler_test.cc
diff --git a/net/quic/congestion_control/quic_send_scheduler_test.cc b/net/quic/congestion_control/quic_send_scheduler_test.cc
index 0df0d92ebe1c95413525c7a08c0075c06041aa95..f28a6db18e6b92e84cbc29a07cb7fd9a2bfaf3a6 100644
--- a/net/quic/congestion_control/quic_send_scheduler_test.cc
+++ b/net/quic/congestion_control/quic_send_scheduler_test.cc
@@ -46,7 +46,7 @@ TEST_F(QuicSendSchedulerTest, FixedRateSenderAPI) {
TEST_F(QuicSendSchedulerTest, FixedRatePacing) {
SetUpCongestionType(kFixRate);
QuicAckFrame ack;
- ack.received_info.largest_received = 0;
+ ack.received_info.largest_observed = 0;
sender_->OnIncomingAckFrame(ack);
QuicCongestionFeedbackFrame feedback;
@@ -165,7 +165,7 @@ TEST_F(QuicSendSchedulerTest, BandwidthWith3SecondGap) {
TEST_F(QuicSendSchedulerTest, Pacing) {
SetUpCongestionType(kFixRate);
QuicAckFrame ack;
- ack.received_info.largest_received = 0;
+ ack.received_info.largest_observed = 0;
sender_->OnIncomingAckFrame(ack);
QuicCongestionFeedbackFrame feedback;
« no previous file with comments | « net/quic/congestion_control/quic_send_scheduler.cc ('k') | net/quic/quic_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698