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 d9919f095d3461ae0938ea209623f1ccae19cdc3..f305ae9e1110d6983eb97197b45c9185ebfcb9b2 100644 |
--- a/net/quic/quic_http_stream_test.cc |
+++ b/net/quic/quic_http_stream_test.cc |
@@ -46,7 +46,7 @@ class TestQuicConnection : public QuicConnection { |
TestQuicConnection(QuicGuid guid, |
IPEndPoint address, |
QuicConnectionHelper* helper) |
- : QuicConnection(guid, address, helper, false) { |
+ : QuicConnection(guid, address, helper, false, QuicVersionMax()) { |
} |
void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) { |
@@ -118,7 +118,7 @@ class QuicHttpStreamTest : public ::testing::TestWithParam<bool> { |
use_closing_stream_(false), |
read_buffer_(new IOBufferWithSize(4096)), |
guid_(2), |
- framer_(kQuicVersion1, QuicTime::Zero(), false), |
+ framer_(QuicVersionMax(), QuicTime::Zero(), false), |
creator_(guid_, &framer_, &random_, false) { |
IPAddressNumber ip; |
CHECK(ParseIPLiteralToNumber("192.0.2.33", &ip)); |