| Index: chrome/browser/profiles/profile_dependency_manager.cc
|
| diff --git a/chrome/browser/profiles/profile_dependency_manager.cc b/chrome/browser/profiles/profile_dependency_manager.cc
|
| index 85ec0f4c4b754981b574e4bca5251e11a4681129..5f24b36e562c7351c1cff158baf0a016347227b8 100644
|
| --- a/chrome/browser/profiles/profile_dependency_manager.cc
|
| +++ b/chrome/browser/profiles/profile_dependency_manager.cc
|
| @@ -51,6 +51,9 @@
|
| #include "chrome/browser/history/shortcuts_backend_factory.h"
|
| #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h"
|
| #include "chrome/browser/notifications/desktop_notification_service_factory.h"
|
| +#if !defined(OS_ANDROID)
|
| +#include "chrome/browser/notifications/sync_notifier/chrome_notifier_service_factory.h"
|
| +#endif
|
| #include "chrome/browser/password_manager/password_store_factory.h"
|
| #include "chrome/browser/plugins/plugin_prefs_factory.h"
|
| #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
|
| @@ -308,6 +311,9 @@ void ProfileDependencyManager::AssertFactoriesBuilt() {
|
| GlobalErrorServiceFactory::GetInstance();
|
| GoogleURLTrackerFactory::GetInstance();
|
| HistoryServiceFactory::GetInstance();
|
| +#if !defined(OS_ANDROID)
|
| + notifier::ChromeNotifierServiceFactory::GetInstance();
|
| +#endif
|
| MediaGalleriesPreferencesFactory::GetInstance();
|
| NTPResourceCacheFactory::GetInstance();
|
| PasswordStoreFactory::GetInstance();
|
|
|