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

Unified Diff: chrome/browser/renderer_host/resource_dispatcher_host.cc

Issue 661241: Linux: implement Client SSL Certificate selection UI (Closed)
Patch Set: fix views and chromeos builds hopefully Created 10 years, 10 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 | « chrome/browser/gtk/certificate_viewer.cc ('k') | chrome/browser/ssl/ssl_client_auth_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/resource_dispatcher_host.cc
diff --git a/chrome/browser/renderer_host/resource_dispatcher_host.cc b/chrome/browser/renderer_host/resource_dispatcher_host.cc
index c7e6050fe2404e7f502a0bea3593790360b78a6d..8837247fc6e1f44b3573834ee1591117aa41df5c 100644
--- a/chrome/browser/renderer_host/resource_dispatcher_host.cc
+++ b/chrome/browser/renderer_host/resource_dispatcher_host.cc
@@ -969,14 +969,6 @@ void ResourceDispatcherHost::OnCertificateRequested(
net::SSLCertRequestInfo* cert_request_info) {
DCHECK(request);
-#if defined(OS_LINUX)
- bool select_first_cert = CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kAutoSSLClientAuth);
- net::X509Certificate* cert =
- select_first_cert && !cert_request_info->client_certs.empty() ?
- cert_request_info->client_certs[0] : NULL;
- request->ContinueWithCertificate(cert);
-#else
if (cert_request_info->client_certs.empty()) {
// No need to query the user if there are no certs to choose from.
request->ContinueWithCertificate(NULL);
@@ -989,7 +981,6 @@ void ResourceDispatcherHost::OnCertificateRequested(
info->set_ssl_client_auth_handler(
new SSLClientAuthHandler(request, cert_request_info));
info->ssl_client_auth_handler()->SelectCertificate();
-#endif
}
void ResourceDispatcherHost::OnSSLCertificateError(
« no previous file with comments | « chrome/browser/gtk/certificate_viewer.cc ('k') | chrome/browser/ssl/ssl_client_auth_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698