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

Unified Diff: components/browser_sync/profile_sync_service_typed_url_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_typed_url_unittest.cc
diff --git a/components/browser_sync/profile_sync_service_typed_url_unittest.cc b/components/browser_sync/profile_sync_service_typed_url_unittest.cc
index bab7b5be9dedc715a24b50aff2f2cb3f60931c1a..da6c619b817cc37ef0839c5b8ce35ada11bdabbb 100644
--- a/components/browser_sync/profile_sync_service_typed_url_unittest.cc
+++ b/components/browser_sync/profile_sync_service_typed_url_unittest.cc
@@ -61,7 +61,7 @@ const char kDummySavingBrowserHistoryDisabled[] = "dummyPref";
static const int EXPIRED_VISIT = -1;
ACTION(ReturnNewDataTypeManager) {
- return new syncer::DataTypeManagerImpl(arg0, arg1, arg2, arg3, arg4);
+ return new syncer::DataTypeManagerImpl(arg0, arg1, arg2, arg3, arg4, arg5);
}
class HistoryBackendMock : public HistoryBackend {
@@ -249,7 +249,7 @@ class ProfileSyncServiceTypedUrlTest : public AbstractProfileSyncServiceTest {
signin->SetAuthenticatedAccountInfo("gaia_id", "test");
CreateSyncService(std::move(sync_client_), callback);
EXPECT_CALL(*profile_sync_service_bundle()->component_factory(),
- CreateDataTypeManager(_, _, _, _, _))
+ CreateDataTypeManager(_, _, _, _, _, _))
.WillOnce(ReturnNewDataTypeManager());
profile_sync_service_bundle()->auth_service()->UpdateCredentials(

Powered by Google App Engine
This is Rietveld 408576698