Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(950)

Unified Diff: net/tools/quic/test_tools/server_thread.cc

Issue 1411063004: Remove insecure QUIC support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: enough! Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/quic/test_tools/server_thread.h ('k') | remoting/protocol/quic_channel_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {}
« no previous file with comments | « net/tools/quic/test_tools/server_thread.h ('k') | remoting/protocol/quic_channel_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698