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

Unified Diff: net/quic/quic_session_test.cc

Issue 2183493002: Add a merely pass-through QuicMultipathSentPacketManager. Protected behind blocked flag FLAGS_quic_… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/quic_session_test.cc
diff --git a/net/quic/quic_session_test.cc b/net/quic/quic_session_test.cc
index 7b5925a858110ec4fbf5c287eae059cd71e9a7ad..d37b42f6c96926ba367ae2cdd0625c68175d3bb1 100644
--- a/net/quic/quic_session_test.cc
+++ b/net/quic/quic_session_test.cc
@@ -496,7 +496,8 @@ TEST_P(QuicSessionTestServer, OnCanWriteBundlesStreams) {
// Drive congestion control manually.
MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>;
- QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm);
+ QuicConnectionPeer::SetSendAlgorithm(session_.connection(), kDefaultPathId,
+ send_algorithm);
TestStream* stream2 = session_.CreateOutgoingDynamicStream(kDefaultPriority);
TestStream* stream4 = session_.CreateOutgoingDynamicStream(kDefaultPriority);
@@ -539,7 +540,8 @@ TEST_P(QuicSessionTestServer, OnCanWriteCongestionControlBlocks) {
// Drive congestion control manually.
MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>;
- QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm);
+ QuicConnectionPeer::SetSendAlgorithm(session_.connection(), kDefaultPathId,
+ send_algorithm);
TestStream* stream2 = session_.CreateOutgoingDynamicStream(kDefaultPriority);
TestStream* stream4 = session_.CreateOutgoingDynamicStream(kDefaultPriority);

Powered by Google App Engine
This is Rietveld 408576698