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

Unified Diff: chrome/browser/ssl/ssl_client_auth_handler.h

Issue 345037: Fifth patch in getting rid of caching MessageLoop pointers. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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/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);
};

Powered by Google App Engine
This is Rietveld 408576698