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

Unified Diff: net/test/spawned_test_server/base_test_server.cc

Issue 981723008: Unwind the SSL connection holdback experiment and remove related code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename & reformat Created 5 years, 9 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/test/spawned_test_server/base_test_server.h ('k') | net/tools/testserver/testserver.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/test/spawned_test_server/base_test_server.cc
diff --git a/net/test/spawned_test_server/base_test_server.cc b/net/test/spawned_test_server/base_test_server.cc
index de76eed17b86df122795316968fc1fb00c69c3b0..d27eacbd96bf0cc58830a729b9485032472b9dbc 100644
--- a/net/test/spawned_test_server/base_test_server.cc
+++ b/net/test/spawned_test_server/base_test_server.cc
@@ -104,8 +104,7 @@ BaseTestServer::SSLOptions::SSLOptions()
fallback_scsv_enabled(false),
staple_ocsp_response(false),
ocsp_server_unavailable(false),
- enable_npn(false),
- disable_session_cache(false) {
+ enable_npn(false) {
}
BaseTestServer::SSLOptions::SSLOptions(
@@ -122,8 +121,7 @@ BaseTestServer::SSLOptions::SSLOptions(
fallback_scsv_enabled(false),
staple_ocsp_response(false),
ocsp_server_unavailable(false),
- enable_npn(false),
- disable_session_cache(false) {
+ enable_npn(false) {
}
BaseTestServer::SSLOptions::~SSLOptions() {}
@@ -486,8 +484,6 @@ bool BaseTestServer::GenerateArguments(base::DictionaryValue* arguments) const {
}
if (ssl_options_.enable_npn)
arguments->Set("enable-npn", base::Value::CreateNullValue());
- if (ssl_options_.disable_session_cache)
- arguments->Set("disable-session-cache", base::Value::CreateNullValue());
}
return GenerateAdditionalArguments(arguments);
« no previous file with comments | « net/test/spawned_test_server/base_test_server.h ('k') | net/tools/testserver/testserver.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698