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

Unified Diff: net/socket/ssl_client_socket_openssl.h

Issue 328903004: SSL Connect Job Waiting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a command line flag that enables my changes. 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_openssl.h
diff --git a/net/socket/ssl_client_socket_openssl.h b/net/socket/ssl_client_socket_openssl.h
index 5d70c0523fabe0230b2361f7418688f1215fe0df..32e4400d9431e5387aa4b65234762702c978d737 100644
--- a/net/socket/ssl_client_socket_openssl.h
+++ b/net/socket/ssl_client_socket_openssl.h
@@ -39,7 +39,7 @@ class SSLCertRequestInfo;
class SSLInfo;
// An SSL client socket implemented with OpenSSL.
-class SSLClientSocketOpenSSL : public SSLClientSocket {
+class NET_EXPORT SSLClientSocketOpenSSL : public SSLClientSocket {
wtc 2014/06/13 22:47:24 Use NET_EXPORT_PRIVATE if it is exported for net_u
mshelley1 2014/06/16 19:02:49 I think I included NET_EXPORT when I was attemptin
public:
// Takes ownership of the transport_socket, which may already be connected.
// The given hostname will be compared with the name(s) in the server's
@@ -57,6 +57,7 @@ class SSLClientSocketOpenSSL : public SSLClientSocket {
}
// SSLClientSocket implementation.
+ static bool InSessionCache(std::string cache_key);
wtc 2014/06/13 22:47:24 1. This method should not be in the "SSLClientSock
mshelley1 2014/06/16 19:02:49 Done.
virtual void GetSSLCertRequestInfo(
SSLCertRequestInfo* cert_request_info) OVERRIDE;
virtual NextProtoStatus GetNextProto(std::string* proto,

Powered by Google App Engine
This is Rietveld 408576698