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

Unified Diff: chrome/browser/tab_contents/tab_contents_ssl_helper.h

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
Index: chrome/browser/tab_contents/tab_contents_ssl_helper.h
diff --git a/chrome/browser/tab_contents/tab_contents_ssl_helper.h b/chrome/browser/tab_contents/tab_contents_ssl_helper.h
index 8ee4076fcc9c2163c8239414450983ad3d8f22fe..ba17e1b615b5a8c01bd12146d4762b8a49dd10cb 100644
--- a/chrome/browser/tab_contents/tab_contents_ssl_helper.h
+++ b/chrome/browser/tab_contents/tab_contents_ssl_helper.h
@@ -20,10 +20,8 @@ class TabContentsSSLHelper {
explicit TabContentsSSLHelper(TabContentsWrapper* tab_contents);
virtual ~TabContentsSSLHelper();
- // Displays a dialog to select client certificates from |request_info|,
- // returning them to |handler|.
- void ShowClientCertificateRequestDialog(
- scoped_refptr<SSLClientAuthHandler> handler);
+ // Selects the client certificate to submit and returns it to the |handler|.
+ void SelectClientCertificate(scoped_refptr<SSLClientAuthHandler> handler);
// Called when |handler| encounters an error in verifying a received client
// certificate. Note that, because CAs often will not send us intermediate
@@ -52,6 +50,11 @@ class TabContentsSSLHelper {
scoped_refptr<SSLAddCertHandler> handler);
private:
+ // Displays a dialog for selecting a client certificate and returns it to
+ // the |handler|.
+ void ShowClientCertificateRequestDialog(
+ scoped_refptr<SSLClientAuthHandler> handler);
+
TabContentsWrapper* tab_contents_;
class SSLAddCertData;

Powered by Google App Engine
This is Rietveld 408576698