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

Unified Diff: net/ssl/client_cert_store_nss.h

Issue 2838243002: Remove client_certs from SSLCertRequestInfo. (Closed)
Patch Set: revert stray whitespace change Created 3 years, 8 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/ssl/client_cert_store_mac.cc ('k') | net/ssl/client_cert_store_nss.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/client_cert_store_nss.h
diff --git a/net/ssl/client_cert_store_nss.h b/net/ssl/client_cert_store_nss.h
index 60f6e214a4a650e878a531fa1a0f317033f0a08d..d49d50f6a43298eaac20d85756a637fdf0647654 100644
--- a/net/ssl/client_cert_store_nss.h
+++ b/net/ssl/client_cert_store_nss.h
@@ -33,8 +33,7 @@ class NET_EXPORT ClientCertStoreNSS : public ClientCertStore {
// ClientCertStore:
void GetClientCerts(const SSLCertRequestInfo& cert_request_info,
- CertificateList* selected_certs,
- const base::Closure& callback) override;
+ const ClientCertListCallback& callback) override;
// Examines the certificates in |certs| to find all certificates that match
// the client certificate request in |request|, storing the matching
@@ -54,11 +53,10 @@ class NET_EXPORT ClientCertStoreNSS : public ClientCertStore {
net::CertificateList* certs);
private:
- void GetAndFilterCertsOnWorkerThread(
+ CertificateList GetAndFilterCertsOnWorkerThread(
std::unique_ptr<crypto::CryptoModuleBlockingPasswordDelegate>
password_delegate,
- const SSLCertRequestInfo* request,
- CertificateList* selected_certs);
+ const SSLCertRequestInfo* request);
// The factory for creating the delegate for requesting a password to a
// PKCS#11 token. May be null.
« no previous file with comments | « net/ssl/client_cert_store_mac.cc ('k') | net/ssl/client_cert_store_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698