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

Unified Diff: net/socket/ssl_client_socket_win.cc

Issue 10539094: NetLogEventParameter to Callback refactoring 1, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove unneeded line Created 8 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_win.cc
===================================================================
--- net/socket/ssl_client_socket_win.cc (revision 141407)
+++ net/socket/ssl_client_socket_win.cc (working copy)
@@ -1563,7 +1563,8 @@
X509Certificate::CreateFromHandle(server_cert_handle, intermediates));
net_log_.AddEvent(
NetLog::TYPE_SSL_CERTIFICATES_RECEIVED,
- make_scoped_refptr(new X509CertificateNetLogParam(new_server_cert)));
+ base::Bind(&NetLogX509CertificateCallback,
+ base::Unretained(new_server_cert.get())));
if (renegotiating_ && IsCertificateChainIdentical(server_cert_,
new_server_cert)) {
// We already verified the server certificate. Either it is good or the

Powered by Google App Engine
This is Rietveld 408576698