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

Unified Diff: net/socket/ssl_client_socket_nss.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: Created 5 years, 10 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
Index: net/socket/ssl_client_socket_nss.cc
diff --git a/net/socket/ssl_client_socket_nss.cc b/net/socket/ssl_client_socket_nss.cc
index 9a8f72e5bc3bf7f78dbe01cf15ed3f21f465c0ce..78e936b2d453463b9d56d4cdfadd6dc0b7827eda 100644
--- a/net/socket/ssl_client_socket_nss.cc
+++ b/net/socket/ssl_client_socket_nss.cc
@@ -2925,21 +2925,6 @@ bool SSLClientSocketNSS::GetSSLInfo(SSLInfo* ssl_info) {
return true;
}
-std::string SSLClientSocketNSS::GetSessionCacheKey() const {
- NOTIMPLEMENTED();
- return std::string();
-}
-
-bool SSLClientSocketNSS::InSessionCache() const {
- // For now, always return true so that SSLConnectJobs are never held back.
- return true;
-}
-
-void SSLClientSocketNSS::SetHandshakeCompletionCallback(
- const base::Closure& callback) {
- NOTIMPLEMENTED();
-}
-
void SSLClientSocketNSS::GetSSLCertRequestInfo(
SSLCertRequestInfo* cert_request_info) {
EnterFunction("");

Powered by Google App Engine
This is Rietveld 408576698