| Index: chrome/browser/profiles/profile_manager.cc
|
| diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
|
| index 602766ee317e77069c778b85c34ec9515625bb81..4ca17a56015ae6d80de519b5bb704050536dfd05 100644
|
| --- a/chrome/browser/profiles/profile_manager.cc
|
| +++ b/chrome/browser/profiles/profile_manager.cc
|
| @@ -33,6 +33,7 @@
|
| #include "chrome/browser/profiles/profiles_state.h"
|
| #include "chrome/browser/profiles/startup_task_runner_service.h"
|
| #include "chrome/browser/profiles/startup_task_runner_service_factory.h"
|
| +#include "chrome/browser/signin/account_reconcilor_factory.h"
|
| #include "chrome/browser/sync/profile_sync_service.h"
|
| #include "chrome/browser/sync/profile_sync_service_factory.h"
|
| #include "chrome/browser/ui/browser.h"
|
| @@ -805,6 +806,11 @@ void ProfileManager::DoFinalInitForServices(Profile* profile,
|
| // Start the deferred task runners once the profile is loaded.
|
| StartupTaskRunnerServiceFactory::GetForProfile(profile)->
|
| StartDeferredTaskRunners();
|
| +
|
| + if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| + switches::kNewProfileManagement)) {
|
| + AccountReconcilorFactory::GetForProfile(profile);
|
| + }
|
| }
|
|
|
| void ProfileManager::DoFinalInitLogging(Profile* profile) {
|
|
|