Index: chrome/browser/ssl/ssl_client_auth_handler.h |
=================================================================== |
--- chrome/browser/ssl/ssl_client_auth_handler.h (revision 30691) |
+++ chrome/browser/ssl/ssl_client_auth_handler.h (working copy) |
@@ -12,7 +12,6 @@ |
namespace net { |
class X509Certificate; |
} |
-class MessageLoop; |
class URLRequest; |
// This class handles the approval and selection of a certificate for SSL client |
@@ -23,9 +22,7 @@ |
public base::RefCountedThreadSafe<SSLClientAuthHandler> { |
public: |
SSLClientAuthHandler(URLRequest* request, |
- net::SSLCertRequestInfo* cert_request_info, |
- MessageLoop* io_loop, |
- MessageLoop* ui_loop); |
+ net::SSLCertRequestInfo* cert_request_info); |
~SSLClientAuthHandler(); |
// Asks the user to select a certificate and resumes the URL request with that |
@@ -52,9 +49,6 @@ |
// The certs to choose from. |
scoped_refptr<net::SSLCertRequestInfo> cert_request_info_; |
- MessageLoop* io_loop_; |
- MessageLoop* ui_loop_; |
- |
DISALLOW_COPY_AND_ASSIGN(SSLClientAuthHandler); |
}; |