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..4edfb60e7976cc40324ef2627927289fe9fe5e7b 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,9 @@ void ProfileManager::DoFinalInitForServices(Profile* profile, |
// Start the deferred task runners once the profile is loaded. |
StartupTaskRunnerServiceFactory::GetForProfile(profile)-> |
StartDeferredTaskRunners(); |
+ |
+ if (profiles::IsNewProfileManagementEnabled()) |
+ AccountReconcilorFactory::GetForProfile(profile); |
acleung1
2013/11/07 03:46:32
Hmm this works when I patched it in a few days ago
|
} |
void ProfileManager::DoFinalInitLogging(Profile* profile) { |