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

Unified Diff: net/quic/quic_connection_test.cc

Issue 1459343009: Make QuicPacketCreator be able to serialize packet itself when it does not have room for next strea… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@107733506
Patch Set: Created 5 years, 1 month 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 | « no previous file | net/quic/quic_packet_creator.h » ('j') | net/tools/quic/quic_server_bin.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_connection_test.cc
diff --git a/net/quic/quic_connection_test.cc b/net/quic/quic_connection_test.cc
index 3227f72f8d5405a3251b0ad6c5c135f858a54322..fd43923139fd6f2d433d2e91ad9edf0ea3a899f2 100644
--- a/net/quic/quic_connection_test.cc
+++ b/net/quic/quic_connection_test.cc
@@ -676,7 +676,10 @@ class QuicConnectionTest : public ::testing::TestWithParam<TestParams> {
framer_(SupportedVersions(version()),
QuicTime::Zero(),
Perspective::IS_CLIENT),
- peer_creator_(connection_id_, &framer_, &random_generator_),
+ peer_creator_(connection_id_,
+ &framer_,
+ &random_generator_,
+ /*delegate=*/nullptr),
send_algorithm_(new StrictMock<MockSendAlgorithm>),
loss_algorithm_(new MockLossAlgorithm()),
helper_(new TestConnectionHelper(&clock_, &random_generator_)),
« no previous file with comments | « no previous file | net/quic/quic_packet_creator.h » ('j') | net/tools/quic/quic_server_bin.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698