| 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 2f3c9b1d386c134c0701085c0b7776c3fda87871..265ff25bca52974bfbe82cc40dbff8a8c0ee0d8c 100644
|
| --- a/net/http/http_stream_factory_impl_job.cc
|
| +++ b/net/http/http_stream_factory_impl_job.cc
|
| @@ -256,7 +256,7 @@ void HttpStreamFactoryImpl::Job::Start(Request* request) {
|
|
|
| int HttpStreamFactoryImpl::Job::Preconnect(int num_streams) {
|
| DCHECK_GT(num_streams, 0);
|
| - base::WeakPtr<HttpServerProperties> http_server_properties =
|
| + HttpServerProperties* http_server_properties =
|
| session_->http_server_properties();
|
| if (http_server_properties &&
|
| http_server_properties->SupportsRequestPriority(
|
| @@ -1076,7 +1076,7 @@ int HttpStreamFactoryImpl::Job::DoInitConnection() {
|
|
|
| const bool expect_spdy = IsSpdyAlternative();
|
|
|
| - base::WeakPtr<HttpServerProperties> http_server_properties =
|
| + HttpServerProperties* http_server_properties =
|
| session_->http_server_properties();
|
| if (http_server_properties) {
|
| http_server_properties->MaybeForceHTTP11(destination_, &server_ssl_config_);
|
| @@ -1427,7 +1427,7 @@ int HttpStreamFactoryImpl::Job::DoCreateStream() {
|
| host_port_pair.host(),
|
| host_port_pair.port());
|
|
|
| - base::WeakPtr<HttpServerProperties> http_server_properties =
|
| + HttpServerProperties* http_server_properties =
|
| session_->http_server_properties();
|
| if (http_server_properties)
|
| http_server_properties->SetSupportsSpdy(scheme_host_port, true);
|
|
|