| Index: net/quic/quic_connection_helper_test.cc
|
| diff --git a/net/quic/quic_connection_helper_test.cc b/net/quic/quic_connection_helper_test.cc
|
| index 89915bcbdea7fa9fa49c57ffd1c2057409b53845..d3d97e504f0d557f980e3754c8ebb278e93e68fa 100644
|
| --- a/net/quic/quic_connection_helper_test.cc
|
| +++ b/net/quic/quic_connection_helper_test.cc
|
| @@ -52,7 +52,8 @@ class TestConnection : public QuicConnection {
|
| IPEndPoint address,
|
| QuicConnectionHelper* helper,
|
| QuicPacketWriter* writer)
|
| - : QuicConnection(guid, address, helper, writer, false, QuicVersionMax()) {
|
| + : QuicConnection(guid, address, helper, writer, false,
|
| + QuicSupportedVersions()) {
|
| }
|
|
|
| void SendAck() {
|
| @@ -79,7 +80,7 @@ class QuicConnectionHelperTest : public ::testing::Test {
|
|
|
| QuicConnectionHelperTest()
|
| : guid_(2),
|
| - framer_(QuicVersionMax(), QuicTime::Zero(), false),
|
| + framer_(QuicSupportedVersions(), QuicTime::Zero(), false),
|
| net_log_(BoundNetLog()),
|
| frame_(1, false, 0, kData) {
|
| Initialize();
|
|
|