| 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 1da278c25b04d705366dd3cf51128aa41062ffbe..c36a1fbed28b08d20b529863fab5aab8fadd17b4 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -210,6 +210,7 @@ void ProfileIOData::InitializeOnUIThread(Profile* profile) {
|
| ChromeNetworkDelegate::InitializePrefsOnUIThread(
|
| &enable_referrers_,
|
| &enable_do_not_track_,
|
| + &enable_safesearch_,
|
| pref_service);
|
|
|
| #if defined(ENABLE_PRINTING)
|
| @@ -546,6 +547,7 @@ void ProfileIOData::LazyInitialize() const {
|
| profile_params_->cookie_settings,
|
| &enable_referrers_,
|
| &enable_do_not_track_,
|
| + &enable_safesearch_,
|
| load_time_stats_));
|
|
|
| fraudulent_certificate_reporter_.reset(
|
| @@ -668,6 +670,7 @@ void ProfileIOData::ShutdownOnUIThread() {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| enable_referrers_.Destroy();
|
| enable_do_not_track_.Destroy();
|
| + enable_safesearch_.Destroy();
|
| #if !defined(OS_CHROMEOS)
|
| enable_metrics_.Destroy();
|
| #endif
|
|
|