| 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 af21c337e34eef02a955aa73bacfbdec58fd2fda..db94e2fbfa22ce5cdf2674174bc8864aab51e24f 100644
|
| --- a/chrome/browser/profiles/profile_impl_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_impl_io_data.cc
|
| @@ -319,18 +319,18 @@ void ProfileImplIOData::Handle::LazyInitialize() const {
|
| io_data_->http_server_properties_manager_));
|
| io_data_->session_startup_pref()->Init(
|
| prefs::kRestoreOnStartup, pref_service);
|
| - io_data_->session_startup_pref()->MoveToThread(
|
| + io_data_->session_startup_pref()->MoveToTaskRunner(
|
| BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO));
|
| #if defined(FULL_SAFE_BROWSING) || defined(MOBILE_SAFE_BROWSING)
|
| io_data_->safe_browsing_enabled()->Init(prefs::kSafeBrowsingEnabled,
|
| pref_service);
|
| - io_data_->safe_browsing_enabled()->MoveToThread(
|
| + io_data_->safe_browsing_enabled()->MoveToTaskRunner(
|
| BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO));
|
| #endif
|
| #if defined(OS_ANDROID) || defined(OS_IOS)
|
| io_data_->data_reduction_proxy_enabled()->Init(
|
| data_reduction_proxy::prefs::kDataReductionProxyEnabled, pref_service);
|
| - io_data_->data_reduction_proxy_enabled()->MoveToThread(
|
| + io_data_->data_reduction_proxy_enabled()->MoveToTaskRunner(
|
| BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO));
|
| #endif
|
| io_data_->InitializeOnUIThread(profile_);
|
|
|