| Index: chrome/browser/profiles/profile_io_data.cc
|
| diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
|
| index 49e6b930bb1decd6029985550fc1947e8afdac26..8c7ba4b04fbdae3be9d47886750caa3ac2d23c5f 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -914,9 +914,8 @@ void ProfileIOData::set_data_reduction_proxy_io_data(
|
| data_reduction_proxy_io_data_ = std::move(data_reduction_proxy_io_data);
|
| }
|
|
|
| -base::WeakPtr<net::HttpServerProperties>
|
| -ProfileIOData::http_server_properties() const {
|
| - return http_server_properties_->GetWeakPtr();
|
| +net::HttpServerProperties* ProfileIOData::http_server_properties() const {
|
| + return http_server_properties_.get();
|
| }
|
|
|
| void ProfileIOData::set_http_server_properties(
|
|
|