| Index: net/http/http_stream_factory_impl_request.cc
|
| diff --git a/net/http/http_stream_factory_impl_request.cc b/net/http/http_stream_factory_impl_request.cc
|
| index d8a4b5b6bd9e3447b51f80bf86fad2aab0478f62..53548b1254fbf0706ca1c177bac9a57264f6bd17 100644
|
| --- a/net/http/http_stream_factory_impl_request.cc
|
| +++ b/net/http/http_stream_factory_impl_request.cc
|
| @@ -116,7 +116,8 @@ void HttpStreamFactoryImpl::Request::OnWebSocketHandshakeStreamReady(
|
| void HttpStreamFactoryImpl::Request::OnStreamFailed(
|
| Job* job,
|
| int status,
|
| - const SSLConfig& used_ssl_config) {
|
| + const SSLConfig& used_ssl_config,
|
| + SSLFailureState ssl_failure_state) {
|
| DCHECK_NE(OK, status);
|
| DCHECK(job);
|
| if (!bound_job_.get()) {
|
| @@ -139,7 +140,7 @@ void HttpStreamFactoryImpl::Request::OnStreamFailed(
|
| } else {
|
| DCHECK(jobs_.empty());
|
| }
|
| - delegate_->OnStreamFailed(status, used_ssl_config);
|
| + delegate_->OnStreamFailed(status, used_ssl_config, ssl_failure_state);
|
| }
|
|
|
| void HttpStreamFactoryImpl::Request::OnCertificateError(
|
|
|