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

Unified Diff: net/socket/ssl_client_socket_nss.h

Issue 329015: Look up client certificates in ClientAuthHandler to get rid of manual CA... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Minor edits Created 11 years, 2 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 | « no previous file | 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 29898)
+++ net/socket/ssl_client_socket_nss.h (working copy)
@@ -15,6 +15,7 @@
#include <nss.h>
#include <string>
+#include <vector>
#include "base/scoped_ptr.h"
#include "net/base/cert_verify_result.h"
@@ -126,7 +127,7 @@
// Stores client authentication information between ClientAuthHandler and
// GetSSLCertRequestInfo calls.
- CERTDistNames* client_auth_ca_names_;
+ std::vector<scoped_refptr<X509Certificate> > client_certs_;
bool client_auth_cert_needed_;
scoped_ptr<CertVerifier> verifier_;
« no previous file with comments | « no previous file | net/socket/ssl_client_socket_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698