| Index: chrome/browser/io_thread.cc
|
| diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
|
| index 0a2e396321045800cc44d626f714386cf02e9957..aa2d543b2193ec3f3776b56ea35269963377d692 100644
|
| --- a/chrome/browser/io_thread.cc
|
| +++ b/chrome/browser/io_thread.cc
|
| @@ -996,8 +996,7 @@ net::URLRequestContext* IOThread::ConstructSystemRequestContext(
|
| globals->network_quality_estimator.get());
|
| context->set_backoff_manager(globals->url_request_backoff_manager.get());
|
|
|
| - context->set_http_server_properties(
|
| - globals->http_server_properties->GetWeakPtr());
|
| + context->set_http_server_properties(globals->http_server_properties.get());
|
|
|
| context->set_enable_brotli(globals->enable_brotli);
|
|
|
| @@ -1047,8 +1046,7 @@ net::URLRequestContext* IOThread::ConstructProxyScriptFetcherContext(
|
| context->set_network_delegate(globals->system_network_delegate.get());
|
| context->set_http_user_agent_settings(
|
| globals->http_user_agent_settings.get());
|
| - context->set_http_server_properties(
|
| - globals->http_server_properties->GetWeakPtr());
|
| + context->set_http_server_properties(globals->http_server_properties.get());
|
|
|
| context->set_enable_brotli(globals->enable_brotli);
|
|
|
|
|