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

Unified Diff: components/browser_sync/profile_sync_service_autofill_unittest.cc

Issue 2555433003: [Sync] Plumb initial type set from engine to DTM. (Closed)
Patch Set: Rebase. Created 4 years 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: components/browser_sync/profile_sync_service_autofill_unittest.cc
diff --git a/components/browser_sync/profile_sync_service_autofill_unittest.cc b/components/browser_sync/profile_sync_service_autofill_unittest.cc
index 7304cdae6515d4719a2e86923e5a8ab4489b0329..77c09e339c74cf2733ddbbf79bd9f7bba6dcd1c5 100644
--- a/components/browser_sync/profile_sync_service_autofill_unittest.cc
+++ b/components/browser_sync/profile_sync_service_autofill_unittest.cc
@@ -370,8 +370,8 @@ class WebDataServiceFake : public AutofillWebDataService {
};
ACTION_P(ReturnNewDataTypeManagerWithDebugListener, debug_listener) {
- return new syncer::DataTypeManagerImpl(debug_listener, arg1, arg2, arg3,
- arg4);
+ return new syncer::DataTypeManagerImpl(arg0, debug_listener, arg2, arg3, arg4,
+ arg5);
}
class MockPersonalDataManager : public PersonalDataManager {
@@ -476,7 +476,7 @@ class ProfileSyncServiceAutofillTest
CreateSyncService(std::move(sync_client_owned_), callback);
EXPECT_CALL(*profile_sync_service_bundle()->component_factory(),
- CreateDataTypeManager(_, _, _, _, _))
+ CreateDataTypeManager(_, _, _, _, _, _))
.WillOnce(ReturnNewDataTypeManagerWithDebugListener(
syncer::MakeWeakHandle(debug_ptr_factory_.GetWeakPtr())));
« no previous file with comments | « components/browser_sync/profile_sync_service.cc ('k') | components/browser_sync/profile_sync_service_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698