| Index: net/http/http_stream_factory_impl_job_controller.cc | 
| diff --git a/net/http/http_stream_factory_impl_job_controller.cc b/net/http/http_stream_factory_impl_job_controller.cc | 
| index bd3f2e3bd7cdad801af6e1202c231e9f134b909f..292aabfd5a59425da0ca08e514843acabf178fc2 100644 | 
| --- a/net/http/http_stream_factory_impl_job_controller.cc | 
| +++ b/net/http/http_stream_factory_impl_job_controller.cc | 
| @@ -221,8 +221,7 @@ void HttpStreamFactoryImpl::JobController::OnWebSocketHandshakeStreamReady( | 
| void HttpStreamFactoryImpl::JobController::OnStreamFailed( | 
| Job* job, | 
| int status, | 
| -    const SSLConfig& used_ssl_config, | 
| -    SSLFailureState ssl_failure_state) { | 
| +    const SSLConfig& used_ssl_config) { | 
| if (job_bound_ && bound_job_ != job) { | 
| // We have bound a job to the associated Request, |job| has been orphaned. | 
| OnOrphanedJobComplete(job); | 
| @@ -254,7 +253,7 @@ void HttpStreamFactoryImpl::JobController::OnStreamFailed( | 
| } | 
| } | 
|  | 
| -  request_->OnStreamFailed(status, used_ssl_config, ssl_failure_state); | 
| +  request_->OnStreamFailed(status, used_ssl_config); | 
| } | 
|  | 
| void HttpStreamFactoryImpl::JobController::OnCertificateError( | 
|  |