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

Unified Diff: content/browser/ssl/ssl_client_auth_handler.cc

Issue 7537025: Add new Content settings type AUTO-SUBMIT-CERTIFICATE (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 4 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 | « content/browser/ssl/ssl_client_auth_handler.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/ssl/ssl_client_auth_handler.cc
diff --git a/content/browser/ssl/ssl_client_auth_handler.cc b/content/browser/ssl/ssl_client_auth_handler.cc
index e179f9a350866faba9f6c5e6355e33199e0f4a6a..be78e77790ad1b2d7b374bf1d2ee08c831bfd3c2 100644
--- a/content/browser/ssl/ssl_client_auth_handler.cc
+++ b/content/browser/ssl/ssl_client_auth_handler.cc
@@ -46,7 +46,7 @@ void SSLClientAuthHandler::SelectCertificate() {
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
NewRunnableMethod(
- this, &SSLClientAuthHandler::ShowClientCertificateRequestDialog,
+ this, &SSLClientAuthHandler::DoSelectCertificate,
render_process_host_id, render_view_host_id));
}
@@ -94,9 +94,9 @@ void SSLClientAuthHandler::DoCertificateSelected(net::X509Certificate* cert) {
}
}
-void SSLClientAuthHandler::ShowClientCertificateRequestDialog(
+void SSLClientAuthHandler::DoSelectCertificate(
int render_process_host_id, int render_view_host_id) {
- content::GetContentClient()->browser()->ShowClientCertificateRequestDialog(
+ content::GetContentClient()->browser()->SelectClientCertificate(
render_process_host_id, render_view_host_id, this);
}
« no previous file with comments | « content/browser/ssl/ssl_client_auth_handler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698