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

Unified Diff: net/socket/ssl_client_socket.cc

Issue 328903004: SSL Connect Job Waiting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Redesigned cache accessing functions. Created 6 years, 6 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.cc
diff --git a/net/socket/ssl_client_socket.cc b/net/socket/ssl_client_socket.cc
index 1b2fe144304955bd0c423aca96d90226c45d7f4a..35fe4d3e1fb5955418311f1ce13438c64a8c8380 100644
--- a/net/socket/ssl_client_socket.cc
+++ b/net/socket/ssl_client_socket.cc
@@ -7,6 +7,7 @@
#include "base/metrics/histogram.h"
#include "base/strings/string_util.h"
#include "crypto/ec_private_key.h"
+#include "net/socket/ssl_client_socket_openssl.h"
wtc 2014/06/17 17:44:39 Remove this.
mshelley1 2014/06/18 18:53:49 Done.
#include "net/ssl/server_bound_cert_service.h"
#include "net/ssl/ssl_config_service.h"
@@ -103,6 +104,12 @@ NextProto SSLClientSocket::GetNegotiatedProtocol() const {
return protocol_negotiated_;
}
+bool SSLClientSocket::InSessionCache() {
+ // We expect to invoke this method in the SSLClientSocketOpenSSL
+ NOTREACHED();
+ return false;
+}
+
bool SSLClientSocket::IgnoreCertError(int error, int load_flags) {
if (error == OK || load_flags & LOAD_IGNORE_ALL_CERT_ERRORS)
return true;

Powered by Google App Engine
This is Rietveld 408576698