| 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; | 
|  |