| Index: chrome/browser/profiles/profile_impl_io_data.cc
|
| diff --git a/chrome/browser/profiles/profile_impl_io_data.cc b/chrome/browser/profiles/profile_impl_io_data.cc
|
| index b9db4d75b2c8d84c8a836f3a665055e5f63d1d95..f21c1e6565f8ffabc18b324fd7e476da615b89c6 100644
|
| --- a/chrome/browser/profiles/profile_impl_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_impl_io_data.cc
|
| @@ -323,7 +323,7 @@ void ProfileImplIOData::Handle::LazyInitialize() const {
|
| new chrome_browser_net::HttpServerPropertiesManager(pref_service);
|
| io_data_->set_http_server_properties(
|
| scoped_ptr<net::HttpServerProperties>(
|
| - io_data_->http_server_properties_manager_));
|
| + io_data_->http_server_properties_manager_->http_server_properties()));
|
| io_data_->session_startup_pref()->Init(
|
| prefs::kRestoreOnStartup, pref_service);
|
| io_data_->session_startup_pref()->MoveToThread(
|
| @@ -771,5 +771,6 @@ void ProfileImplIOData::ClearNetworkingHistorySinceOnIOThread(
|
| // Completes synchronously.
|
| transport_security_state()->DeleteAllDynamicDataSince(time);
|
| DCHECK(http_server_properties_manager_);
|
| - http_server_properties_manager_->Clear(completion);
|
| + // XXX: fix me
|
| + //http_server_properties_manager_->Clear(completion);
|
| }
|
|
|