| Index: chrome/service/service_process.cc
|
| diff --git a/chrome/service/service_process.cc b/chrome/service/service_process.cc
|
| index 350629d8a2ae74b537260053630d2c9f29072c15..ab7fa73c89ebbaae742ee1f1e67d70a29293a83a 100644
|
| --- a/chrome/service/service_process.cc
|
| +++ b/chrome/service/service_process.cc
|
| @@ -161,10 +161,9 @@ bool ServiceProcess::Initialize(base::MessageLoopForUI* message_loop,
|
| PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
|
| base::FilePath pref_path =
|
| user_data_dir.Append(chrome::kServiceStateFileName);
|
| - service_prefs_.reset(
|
| - new ServiceProcessPrefs(
|
| - pref_path,
|
| - JsonPrefStore::GetTaskRunnerForFile(pref_path, blocking_pool_)));
|
| + service_prefs_.reset(new ServiceProcessPrefs(
|
| + pref_path,
|
| + JsonPrefStore::GetTaskRunnerForFile(pref_path, blocking_pool_.get())));
|
| service_prefs_->ReadPrefs();
|
|
|
| // This switch it required to run connector with test gaia.
|
|
|