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

Unified Diff: chrome/browser/ui/webui/ssl_client_certificate_selector_webui.cc

Issue 9187027: Attempt 2 at: Adds a trivial views based table implementation (only supports single (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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/ui/webui/hung_renderer_dialog.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/ssl_client_certificate_selector_webui.cc
diff --git a/chrome/browser/ui/webui/ssl_client_certificate_selector_webui.cc b/chrome/browser/ui/webui/ssl_client_certificate_selector_webui.cc
index fe7033650cfdcda03f77cc39fa721b2e304e7960..3461045d3f6f2cb2d712408942c50e771fcbe13c 100644
--- a/chrome/browser/ui/webui/ssl_client_certificate_selector_webui.cc
+++ b/chrome/browser/ui/webui/ssl_client_certificate_selector_webui.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -295,7 +295,12 @@ void ShowSSLClientCertificateSelector(
TabContentsWrapper* wrapper,
net::SSLCertRequestInfo* cert_request_info,
SSLClientAuthHandler* delegate) {
-#if defined(USE_AURA) || defined(OS_CHROMEOS)
+ // TODO(jhawkins): move this into a non-webui location.
+#if defined(USE_AURA)
+ ShowNativeSSLClientCertificateSelector(wrapper,
+ cert_request_info,
+ delegate);
+#elif defined(OS_CHROMEOS)
SSLClientCertificateSelectorWebUI::ShowDialog(wrapper,
cert_request_info,
delegate);
« no previous file with comments | « chrome/browser/ui/webui/hung_renderer_dialog.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698