| Index: net/http/http_stream_factory_impl_job.cc
|
| diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
|
| index f0d3a4f75591622553402605ea1776f029ffa85c..cca64c1b9519921bf7bc5a251d7276736cd78467 100644
|
| --- a/net/http/http_stream_factory_impl_job.cc
|
| +++ b/net/http/http_stream_factory_impl_job.cc
|
| @@ -326,10 +326,8 @@ void HttpStreamFactoryImpl::Job::OnStreamReadyCallback() {
|
| if (IsOrphaned()) {
|
| stream_factory_->OnOrphanedJobComplete(this);
|
| } else {
|
| - request_->Complete(was_npn_negotiated(),
|
| - protocol_negotiated(),
|
| - using_spdy(),
|
| - net_log_);
|
| + request_->Complete(was_npn_negotiated(), protocol_negotiated(),
|
| + using_spdy());
|
| request_->OnStreamReady(this, server_ssl_config_, proxy_info_,
|
| stream_.release());
|
| }
|
| @@ -346,10 +344,7 @@ void HttpStreamFactoryImpl::Job::OnWebSocketHandshakeStreamReadyCallback() {
|
|
|
| MaybeCopyConnectionAttemptsFromSocketOrHandle();
|
|
|
| - request_->Complete(was_npn_negotiated(),
|
| - protocol_negotiated(),
|
| - using_spdy(),
|
| - net_log_);
|
| + request_->Complete(was_npn_negotiated(), protocol_negotiated(), using_spdy());
|
| request_->OnWebSocketHandshakeStreamReady(this,
|
| server_ssl_config_,
|
| proxy_info_,
|
|
|