Chromium Code Reviews| Index: net/socket/ssl_client_socket_openssl.cc |
| =================================================================== |
| --- net/socket/ssl_client_socket_openssl.cc (revision 141407) |
| +++ net/socket/ssl_client_socket_openssl.cc (working copy) |
| @@ -822,7 +822,7 @@ |
| DCHECK(got_cert); |
| net_log_.AddEvent( |
| NetLog::TYPE_SSL_CERTIFICATES_RECEIVED, |
| - make_scoped_refptr(new X509CertificateNetLogParam(server_cert_))); |
| + base::Bind(&NetLogX509CertificateNetLogCallback, server_cert_)); |
|
eroman
2012/06/11 23:42:25
nit: indentation seems off
mmenke
2012/06/12 00:42:19
Fixed.
|
| GotoState(STATE_VERIFY_CERT); |
| } else { |
| int ssl_error = SSL_get_error(ssl_, rv); |