Chromium Code Reviews| 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..34eb89c2d60c6c5d27e91c664a393a0bfb988701 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 returning it to |
|
wtc
2011/08/18 22:03:38
returning => returns
markusheintz_
2011/08/19 15:17:58
Done.
|
| + // the |handler|. |
| + void ShowClientCertificateRequestDialog( |
| + scoped_refptr<SSLClientAuthHandler> handler); |
| + |
| TabContentsWrapper* tab_contents_; |
| class SSLAddCertData; |