| 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 6e00398f8c9c295b45af38a05a01f6373cf3cc84..e5e2e63a71f4577722b151212609541f6318b3d7 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -411,6 +411,10 @@ void ProfileIOData::InitializeOnUIThread(Profile* profile) {
|
|
|
| signin_allowed_.Init(prefs::kSigninAllowed, pref_service);
|
| signin_allowed_.MoveToThread(io_message_loop_proxy);
|
| +
|
| + network_prediction_enabled_.Init(prefs::kNetworkPredictionEnabled,
|
| + pref_service);
|
| + network_prediction_enabled_.MoveToThread(io_message_loop_proxy);
|
| }
|
|
|
| quick_check_enabled_.Init(prefs::kQuickCheckEnabled,
|
| @@ -1072,6 +1076,7 @@ void ProfileIOData::ShutdownOnUIThread() {
|
| printing_enabled_.Destroy();
|
| sync_disabled_.Destroy();
|
| signin_allowed_.Destroy();
|
| + network_prediction_enabled_.Destroy();
|
| quick_check_enabled_.Destroy();
|
| if (media_device_id_salt_)
|
| media_device_id_salt_->ShutdownOnUIThread();
|
|
|