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

Unified Diff: net/quic/quic_sent_packet_manager_test.cc

Issue 1037633002: Add a QUIC connection option(BWMX) to resume to the max bandwidth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Populate_RTT_info_89043159
Patch Set: Created 5 years, 9 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_sent_packet_manager.cc ('k') | net/quic/quic_server_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_sent_packet_manager_test.cc
diff --git a/net/quic/quic_sent_packet_manager_test.cc b/net/quic/quic_sent_packet_manager_test.cc
index 70d9578b7cc0524e96f61fea2eabe4daf3f95074..c3ef4d5e004eac0f8b1ff628c1e64403349ff3a3 100644
--- a/net/quic/quic_sent_packet_manager_test.cc
+++ b/net/quic/quic_sent_packet_manager_test.cc
@@ -1719,8 +1719,8 @@ TEST_F(QuicSentPacketManagerTest, ResumeConnectionState) {
CachedNetworkParameters cached_network_params;
cached_network_params.set_min_rtt_ms(kRttMs);
- EXPECT_CALL(*send_algorithm_, ResumeConnectionState(_));
- manager_.ResumeConnectionState(cached_network_params);
+ EXPECT_CALL(*send_algorithm_, ResumeConnectionState(_, false));
+ manager_.ResumeConnectionState(cached_network_params, false);
EXPECT_EQ(kRttMs * kNumMicrosPerMilli,
static_cast<uint64>(manager_.GetRttStats()->initial_rtt_us()));
}
« no previous file with comments | « net/quic/quic_sent_packet_manager.cc ('k') | net/quic/quic_server_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698