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

Unified Diff: net/socket/ssl_client_socket_nss.h

Issue 147159: Fix a crash in net::SSLClientSocketWin::OnIOComplete(int) when... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin Created 11 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
« no previous file with comments | « net/socket/client_socket.h ('k') | net/socket/ssl_client_socket_nss.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_nss.h
===================================================================
--- net/socket/ssl_client_socket_nss.h (revision 19275)
+++ net/socket/ssl_client_socket_nss.h (working copy)
@@ -15,7 +15,6 @@
#include <string>
#include "base/scoped_ptr.h"
-#include "net/base/cert_verifier.h"
#include "net/base/cert_verify_result.h"
#include "net/base/completion_callback.h"
#include "net/base/nss_memio.h"
@@ -24,6 +23,7 @@
namespace net {
+class CertVerifier;
class X509Certificate;
// An SSL client socket implemented with Mozilla NSS.
@@ -99,7 +99,7 @@
scoped_refptr<X509Certificate> server_cert_;
CertVerifyResult server_cert_verify_result_;
- CertVerifier verifier_;
+ scoped_ptr<CertVerifier> verifier_;
bool completed_handshake_;
« no previous file with comments | « net/socket/client_socket.h ('k') | net/socket/ssl_client_socket_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698