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

Unified Diff: net/quic/quic_http_stream_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/quic_http_stream_test.cc
diff --git a/net/quic/quic_http_stream_test.cc b/net/quic/quic_http_stream_test.cc
index cf8b2351aaed7c317a4f2a07a568158892b4fca9..9c00fe9d5c3d6e8cdea9c401532921b0f940850e 100644
--- a/net/quic/quic_http_stream_test.cc
+++ b/net/quic/quic_http_stream_test.cc
@@ -179,9 +179,8 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<bool> {
crypto_config_.SetDefaults();
session_.reset(new QuicClientSession(connection_, socket, NULL,
&crypto_client_stream_factory_,
- "www.google.com", QuicConfig(),
+ "www.google.com", DefaultQuicConfig(),
&crypto_config_, NULL));
- session_->config()->SetDefaults();
session_->GetCryptoStream()->CryptoConnect();
EXPECT_TRUE(session_->IsCryptoHandshakeConfirmed());
QuicReliableClientStream* stream =
@@ -280,7 +279,6 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<bool> {
header_.public_header.version_flag = should_include_version;
header_.packet_sequence_number = sequence_number;
header_.fec_group = 0;
- header_.fec_entropy_flag = false;
header_.entropy_flag = false;
header_.fec_flag = false;
}

Powered by Google App Engine
This is Rietveld 408576698