| 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) {
|
|
|