summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ssl/ssl_client_auth_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ssl/ssl_client_auth_handler.h')
-rw-r--r--chrome/browser/ssl/ssl_client_auth_handler.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/ssl/ssl_client_auth_handler.h b/chrome/browser/ssl/ssl_client_auth_handler.h
index b3146b2..6d7550d 100644
--- a/chrome/browser/ssl/ssl_client_auth_handler.h
+++ b/chrome/browser/ssl/ssl_client_auth_handler.h
@@ -23,7 +23,6 @@ class SSLClientAuthHandler :
public:
SSLClientAuthHandler(URLRequest* request,
net::SSLCertRequestInfo* cert_request_info);
- ~SSLClientAuthHandler();
// Asks the user to select a certificate and resumes the URL request with that
// certificate.
@@ -35,6 +34,10 @@ class SSLClientAuthHandler :
void OnRequestCancelled();
private:
+ friend class base::RefCountedThreadSafe<SSLClientAuthHandler>;
+
+ ~SSLClientAuthHandler();
+
// Asks the user for a cert.
// Called on the UI thread.
void DoSelectCertificate();