| Index: net/tools/quic/quic_simple_server.h
|
| diff --git a/net/tools/quic/quic_simple_server.h b/net/tools/quic/quic_simple_server.h
|
| index b8dba27f9423ff9e56ce3b8a2be5c57fa1e88329..bdf963eac881404612f599260110e18be6cb1704 100644
|
| --- a/net/tools/quic/quic_simple_server.h
|
| +++ b/net/tools/quic/quic_simple_server.h
|
| @@ -32,7 +32,8 @@ class QuicSimpleServerPeer;
|
|
|
| class QuicSimpleServer {
|
| public:
|
| - QuicSimpleServer(const QuicConfig& config,
|
| + QuicSimpleServer(ProofSource* proof_source,
|
| + const QuicConfig& config,
|
| const QuicVersionVector& supported_versions);
|
|
|
| virtual ~QuicSimpleServer();
|
| @@ -55,12 +56,6 @@ class QuicSimpleServer {
|
| crypto_config_.set_strike_register_no_startup_period();
|
| }
|
|
|
| - // SetProofSource sets the ProofSource that will be used to verify the
|
| - // server's certificate, and takes ownership of |source|.
|
| - void SetProofSource(ProofSource* source) {
|
| - crypto_config_.SetProofSource(source);
|
| - }
|
| -
|
| QuicDispatcher* dispatcher() { return dispatcher_.get(); }
|
|
|
| private:
|
|
|