Index: components/browser_sync/profile_sync_test_util.h |
diff --git a/components/browser_sync/profile_sync_test_util.h b/components/browser_sync/profile_sync_test_util.h |
index 52b9a35d8924cc863d269723c0f55168c780bc7f..1c573a74abcd37694ed64ce685740e75684dd494 100644 |
--- a/components/browser_sync/profile_sync_test_util.h |
+++ b/components/browser_sync/profile_sync_test_util.h |
@@ -91,8 +91,9 @@ class ProfileSyncServiceBundle { |
// The client will call this callback to produce the SyncService for the |
// current Profile. |
- void SetSyncServiceCallback(const base::Callback<sync_driver::SyncService*( |
- void)>& get_sync_service_callback); |
+ void SetSyncServiceCallback( |
+ const base::Callback<syncer::SyncService*(void)>& |
+ get_sync_service_callback); |
void SetHistoryService(history::HistoryService* history_service); |
@@ -102,7 +103,7 @@ class ProfileSyncServiceBundle { |
void set_activate_model_creation() { activate_model_creation_ = true; } |
- std::unique_ptr<sync_driver::FakeSyncClient> Build(); |
+ std::unique_ptr<syncer::FakeSyncClient> Build(); |
private: |
// Associated bundle to source objects from. |
@@ -112,7 +113,7 @@ class ProfileSyncServiceBundle { |
base::Callback<base::WeakPtr<syncer::SyncableService>( |
syncer::ModelType type)> |
get_syncable_service_callback_; |
- base::Callback<sync_driver::SyncService*(void)> get_sync_service_callback_; |
+ base::Callback<syncer::SyncService*(void)> get_sync_service_callback_; |
history::HistoryService* history_service_ = nullptr; |
base::Callback<bookmarks::BookmarkModel*(void)> |
get_bookmark_model_callback_; |
@@ -128,7 +129,7 @@ class ProfileSyncServiceBundle { |
// the bundle. |
ProfileSyncService::InitParams CreateBasicInitParams( |
ProfileSyncService::StartBehavior start_behavior, |
- std::unique_ptr<sync_driver::SyncClient> sync_client); |
+ std::unique_ptr<syncer::SyncClient> sync_client); |
// Accessors |
@@ -146,7 +147,7 @@ class ProfileSyncServiceBundle { |
AccountTrackerService* account_tracker() { return &account_tracker_; } |
- SyncApiComponentFactoryMock* component_factory() { |
+ syncer::SyncApiComponentFactoryMock* component_factory() { |
return &component_factory_; |
} |
@@ -173,7 +174,7 @@ class ProfileSyncServiceBundle { |
AccountTrackerService account_tracker_; |
FakeSigninManagerType signin_manager_; |
FakeProfileOAuth2TokenService auth_service_; |
- SyncApiComponentFactoryMock component_factory_; |
+ syncer::SyncApiComponentFactoryMock component_factory_; |
sync_sessions::FakeSyncSessionsClient sync_sessions_client_; |
invalidation::FakeInvalidationService fake_invalidation_service_; |
scoped_refptr<net::URLRequestContextGetter> url_request_context_; |