| Index: net/tools/quic/test_tools/quic_test_server.cc
|
| diff --git a/net/tools/quic/test_tools/quic_test_server.cc b/net/tools/quic/test_tools/quic_test_server.cc
|
| index aaa169498d7b9a963c38feabc6c81bdc0746aff1..4a4ed5b75bd5e7f9f3f895197dfa46753829b009 100644
|
| --- a/net/tools/quic/test_tools/quic_test_server.cc
|
| +++ b/net/tools/quic/test_tools/quic_test_server.cc
|
| @@ -63,7 +63,7 @@ class QuicTestDispatcher : public QuicDispatcher {
|
| QuicConnection* connection =
|
| new QuicConnection(id, client, helper(), connection_writer_factory(),
|
| /* owns_writer= */ true, Perspective::IS_SERVER,
|
| - /* is_secure */ true, supported_versions());
|
| + supported_versions());
|
|
|
| QuicServerSession* session = nullptr;
|
| if (stream_creator_ != nullptr) {
|
| @@ -105,11 +105,13 @@ class QuicTestDispatcher : public QuicDispatcher {
|
| QuicTestServer::StreamCreationFunction stream_creator_;
|
| };
|
|
|
| -QuicTestServer::QuicTestServer() : QuicServer() {}
|
| +QuicTestServer::QuicTestServer(ProofSource* proof_source)
|
| + : QuicServer(proof_source) {}
|
|
|
| -QuicTestServer::QuicTestServer(const QuicConfig& config,
|
| +QuicTestServer::QuicTestServer(ProofSource* proof_source,
|
| + const QuicConfig& config,
|
| const QuicVersionVector& supported_versions)
|
| - : QuicServer(config, supported_versions) {}
|
| + : QuicServer(proof_source, config, supported_versions) {}
|
|
|
| QuicDispatcher* QuicTestServer::CreateQuicDispatcher() {
|
| return new QuicTestDispatcher(
|
|
|