| Index: net/tools/quic/test_tools/server_thread.cc
|
| diff --git a/net/tools/quic/test_tools/server_thread.cc b/net/tools/quic/test_tools/server_thread.cc
|
| index 09cba688edce717e31223b4091de852f3ecfb383..4ca948980d5ced068b3b83ea2936a5b2f63f7e6c 100644
|
| --- a/net/tools/quic/test_tools/server_thread.cc
|
| +++ b/net/tools/quic/test_tools/server_thread.cc
|
| @@ -13,7 +13,6 @@ namespace tools {
|
| namespace test {
|
|
|
| ServerThread::ServerThread(QuicServer* server,
|
| - bool is_secure,
|
| const IPEndPoint& address,
|
| bool strike_register_no_startup_period)
|
| : SimpleThread("server_thread"),
|
| @@ -29,12 +28,6 @@ ServerThread::ServerThread(QuicServer* server,
|
| if (strike_register_no_startup_period) {
|
| server_->SetStrikeRegisterNoStartupPeriod();
|
| }
|
| - if (is_secure) {
|
| - // TODO(rtenneti): replace this with ProofSourceForTesting() when Chromium
|
| - // has a working ProofSourceForTesting().
|
| - server_->SetProofSource(
|
| - net::test::CryptoTestUtils::FakeProofSourceForTesting());
|
| - }
|
| }
|
|
|
| ServerThread::~ServerThread() {}
|
|
|