| Index: net/tools/quic/test_tools/quic_test_client.cc
|
| diff --git a/net/tools/quic/test_tools/quic_test_client.cc b/net/tools/quic/test_tools/quic_test_client.cc
|
| index b8ad0bbb384aae19694afb582d156b371eeea686..ef9a1640534626d100037e9fd01757c47f9d2706 100644
|
| --- a/net/tools/quic/test_tools/quic_test_client.cc
|
| +++ b/net/tools/quic/test_tools/quic_test_client.cc
|
| @@ -85,15 +85,17 @@ BalsaHeaders* MungeHeaders(const BalsaHeaders* const_headers,
|
| return headers;
|
| }
|
|
|
| -QuicTestClient::QuicTestClient(IPEndPoint address, const string& hostname)
|
| - : client_(address, hostname) {
|
| +QuicTestClient::QuicTestClient(IPEndPoint address, const string& hostname,
|
| + const QuicVersion version)
|
| + : client_(address, hostname, version) {
|
| Initialize(address, hostname);
|
| }
|
|
|
| QuicTestClient::QuicTestClient(IPEndPoint address,
|
| const string& hostname,
|
| - bool secure)
|
| - : client_(address, hostname) {
|
| + bool secure,
|
| + const QuicVersion version)
|
| + : client_(address, hostname, version) {
|
| Initialize(address, hostname);
|
| secure_ = secure;
|
| // TODO(alyssar, agl) uncomment here and below when default certs are allowed.
|
| @@ -102,8 +104,9 @@ QuicTestClient::QuicTestClient(IPEndPoint address,
|
|
|
| QuicTestClient::QuicTestClient(IPEndPoint address,
|
| const string& hostname,
|
| - const QuicConfig& config)
|
| - : client_(address, hostname, config) {
|
| + const QuicConfig& config,
|
| + const QuicVersion version)
|
| + : client_(address, hostname, config, version) {
|
| Initialize(address, hostname);
|
| }
|
|
|
|
|