Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.cc

Issue 2768923005: [Sync] Adding missing DependsOn to *ProfileSyncServiceFactory. (Closed)
Patch Set: Added crbug. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « docs/sync/model_api.md ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.cc
diff --git a/ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.cc b/ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.cc
index 8b9dfe790bf80a09781b49f2589e1e0f4d31e97b..4b6f664a62a8e85c1b1ebe7708deadabf3629c5d 100644
--- a/ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.cc
+++ b/ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.cc
@@ -26,6 +26,7 @@
#include "ios/chrome/browser/history/history_service_factory.h"
#include "ios/chrome/browser/invalidation/ios_chrome_profile_invalidation_provider_factory.h"
#include "ios/chrome/browser/passwords/ios_chrome_password_store_factory.h"
+#include "ios/chrome/browser/reading_list/reading_list_model_factory.h"
#include "ios/chrome/browser/search_engines/template_url_service_factory.h"
#include "ios/chrome/browser/services/gcm/ios_chrome_gcm_profile_service_factory.h"
#include "ios/chrome/browser/sessions/ios_chrome_tab_restore_service_factory.h"
@@ -34,6 +35,7 @@
#include "ios/chrome/browser/signin/signin_client_factory.h"
#include "ios/chrome/browser/signin/signin_manager_factory.h"
#include "ios/chrome/browser/sync/ios_chrome_sync_client.h"
+#include "ios/chrome/browser/undo/bookmark_undo_service_factory.h"
#include "ios/chrome/browser/web_data_service_factory.h"
#include "ios/chrome/common/channel_info.h"
#include "ios/web/public/web_thread.h"
@@ -99,15 +101,18 @@ IOSChromeProfileSyncServiceFactory::IOSChromeProfileSyncServiceFactory()
DependsOn(autofill::PersonalDataManagerFactory::GetInstance());
DependsOn(ios::AboutSigninInternalsFactory::GetInstance());
DependsOn(ios::BookmarkModelFactory::GetInstance());
- DependsOn(SigninClientFactory::GetInstance());
+ DependsOn(ios::BookmarkUndoServiceFactory::GetInstance());
+ DependsOn(ios::FaviconServiceFactory::GetInstance());
DependsOn(ios::HistoryServiceFactory::GetInstance());
- DependsOn(IOSChromeProfileInvalidationProviderFactory::GetInstance());
- DependsOn(OAuth2TokenServiceFactory::GetInstance());
- DependsOn(IOSChromePasswordStoreFactory::GetInstance());
DependsOn(ios::SigninManagerFactory::GetInstance());
DependsOn(ios::TemplateURLServiceFactory::GetInstance());
DependsOn(ios::WebDataServiceFactory::GetInstance());
- DependsOn(ios::FaviconServiceFactory::GetInstance());
+ DependsOn(IOSChromeGCMProfileServiceFactory::GetInstance());
+ DependsOn(IOSChromePasswordStoreFactory::GetInstance());
+ DependsOn(IOSChromeProfileInvalidationProviderFactory::GetInstance());
+ DependsOn(OAuth2TokenServiceFactory::GetInstance());
+ DependsOn(ReadingListModelFactory::GetInstance());
+ DependsOn(SigninClientFactory::GetInstance());
}
IOSChromeProfileSyncServiceFactory::~IOSChromeProfileSyncServiceFactory() {}
« no previous file with comments | « docs/sync/model_api.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698