Chromium Code Reviews| 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, |