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

Unified Diff: chrome/browser/renderer_host/resource_dispatcher_host.cc

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/renderer_host/resource_dispatcher_host.cc
===================================================================
--- chrome/browser/renderer_host/resource_dispatcher_host.cc (revision 30691)
+++ chrome/browser/renderer_host/resource_dispatcher_host.cc (working copy)
@@ -1046,7 +1046,7 @@
ResourceDispatcherHostRequestInfo* info = InfoForRequest(request);
DCHECK(!info->login_handler()) <<
"OnAuthRequired called with login_handler pending";
- info->set_login_handler(CreateLoginPrompt(auth_info, request, ui_loop_));
+ info->set_login_handler(CreateLoginPrompt(auth_info, request));
}
void ResourceDispatcherHost::OnCertificateRequested(
@@ -1072,7 +1072,7 @@
DCHECK(!info->ssl_client_auth_handler()) <<
"OnCertificateRequested called with ssl_client_auth_handler pending";
info->set_ssl_client_auth_handler(
- new SSLClientAuthHandler(request, cert_request_info, io_loop_, ui_loop_));
+ new SSLClientAuthHandler(request, cert_request_info));
info->ssl_client_auth_handler()->SelectCertificate();
#endif
}
@@ -1082,7 +1082,7 @@
int cert_error,
net::X509Certificate* cert) {
DCHECK(request);
- SSLManager::OnSSLCertificateError(this, request, cert_error, cert, ui_loop_);
+ SSLManager::OnSSLCertificateError(this, request, cert_error, cert);
}
void ResourceDispatcherHost::OnResponseStarted(URLRequest* request) {

Powered by Google App Engine
This is Rietveld 408576698