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

Unified Diff: components/browser_sync/profile_sync_service_autofill_unittest.cc

Issue 2388673002: Revert of [Sync] Move //components/sync to the syncer namespace. (patchset #5 id:40001 of https://co (Closed)
Patch Set: Created 4 years, 2 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: 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 3b322cc268189acbb68031467d8905b905530307..592a4168f5466e9bcd457d3c0960947d3345cd23 100644
--- a/components/browser_sync/profile_sync_service_autofill_unittest.cc
+++ b/components/browser_sync/profile_sync_service_autofill_unittest.cc
@@ -364,8 +364,8 @@ class WebDataServiceFake : public AutofillWebDataService {
};
ACTION_P(ReturnNewDataTypeManagerWithDebugListener, debug_listener) {
- return new syncer::DataTypeManagerImpl(debug_listener, arg1, arg2, arg3,
- arg4);
+ return new sync_driver::DataTypeManagerImpl(debug_listener, arg1, arg2, arg3,
+ arg4);
}
class MockPersonalDataManager : public PersonalDataManager {
@@ -603,7 +603,7 @@ class ProfileSyncServiceAutofillTest
EXPECT_CALL(autofill_table_, UpdateAutofillEntries(Not(empty))).Times(0);
}
- std::unique_ptr<syncer::DataTypeController> CreateDataTypeController(
+ std::unique_ptr<sync_driver::DataTypeController> CreateDataTypeController(
syncer::ModelType type) {
DCHECK(type == AUTOFILL || type == AUTOFILL_PROFILE);
if (type == AUTOFILL) {
@@ -653,8 +653,8 @@ class ProfileSyncServiceAutofillTest
// |sync_client_owned_| keeps the created client until it is passed to the
// created ProfileSyncService. |sync_client_| just keeps a weak reference to
// the client the whole time.
- std::unique_ptr<syncer::FakeSyncClient> sync_client_owned_;
- syncer::FakeSyncClient* sync_client_;
+ std::unique_ptr<sync_driver::FakeSyncClient> sync_client_owned_;
+ sync_driver::FakeSyncClient* sync_client_;
DISALLOW_COPY_AND_ASSIGN(ProfileSyncServiceAutofillTest);
};
« no previous file with comments | « components/browser_sync/profile_sync_service.cc ('k') | components/browser_sync/profile_sync_service_bookmark_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698