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

Unified Diff: chrome/browser/sync/profile_sync_service_autofill_unittest.cc

Issue 9241029: sync: Pass ProfileSyncService to NonFrontendDataTypeController's ctor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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
Index: chrome/browser/sync/profile_sync_service_autofill_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
index 49ee5dd4186ce87983aca2b61c9b5a6644341307..c9beba433b89d8df436913b894dd62a942029835 100644
--- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
@@ -286,7 +286,7 @@ class AutofillEntryFactory : public AbstractAutofillFactory {
ProfileSyncComponentsFactory* factory,
ProfileMock* profile,
ProfileSyncService* service) OVERRIDE {
- return new AutofillDataTypeController(factory, profile);
+ return new AutofillDataTypeController(factory, profile, service);
}
virtual void SetExpectation(ProfileSyncComponentsFactoryMock* factory,
@@ -308,7 +308,7 @@ class AutofillProfileFactory : public AbstractAutofillFactory {
ProfileSyncComponentsFactory* factory,
ProfileMock* profile,
ProfileSyncService* service) OVERRIDE {
- return new AutofillProfileDataTypeController(factory, profile);
+ return new AutofillProfileDataTypeController(factory, profile, service);
}
virtual void SetExpectation(ProfileSyncComponentsFactoryMock* factory,
« no previous file with comments | « chrome/browser/sync/profile_sync_service.cc ('k') | chrome/browser/sync/profile_sync_service_password_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698