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

Unified Diff: chrome/browser/ssl/ssl_client_certificate_selector.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
Index: chrome/browser/ssl/ssl_client_certificate_selector.h
diff --git a/chrome/browser/ssl/ssl_client_certificate_selector.h b/chrome/browser/ssl/ssl_client_certificate_selector.h
index 6faf23c50ac9b668f6f1ffb58b5d9137cd542c42..5d20f056337cbb85fcf695728fc5ea7ed9a7022c 100644
--- a/chrome/browser/ssl/ssl_client_certificate_selector.h
+++ b/chrome/browser/ssl/ssl_client_certificate_selector.h
@@ -8,6 +8,7 @@
#include <memory>
#include "base/callback_forward.h"
+#include "net/cert/x509_certificate.h"
namespace content {
class ClientCertificateDelegate;
@@ -21,12 +22,14 @@ class SSLCertRequestInfo;
namespace chrome {
// Opens a constrained SSL client certificate selection dialog under |parent|,
-// offering certificates from |cert_request_info|. When the user has made a
-// selection, the dialog will report back to |delegate|. If the dialog is
-// closed with no selection, |delegate| will simply be destroyed.
+// offering certificates in |client_certs| for the host specified by
+// |cert_request_info|. When the user has made a selection, the dialog will
+// report back to |delegate|. If the dialog is closed with no selection,
+// |delegate| will simply be destroyed.
void ShowSSLClientCertificateSelector(
content::WebContents* contents,
net::SSLCertRequestInfo* cert_request_info,
+ net::CertificateList client_certs,
std::unique_ptr<content::ClientCertificateDelegate> delegate);
} // namespace chrome
« no previous file with comments | « chrome/browser/prerender/prerender_browsertest.cc ('k') | chrome/browser/ssl/ssl_client_certificate_selector_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698