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

Unified Diff: components/sync_bookmarks/bookmark_data_type_controller.cc

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Rebase. Created 4 years, 3 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/sync_bookmarks/bookmark_data_type_controller.cc
diff --git a/components/sync_bookmarks/bookmark_data_type_controller.cc b/components/sync_bookmarks/bookmark_data_type_controller.cc
index 5d906d394df8dfdff28d33498f4bd3c94df56aaf..1a2e494eb6b6ddc7b9b435e98947c2dff4fc9aaa 100644
--- a/components/sync_bookmarks/bookmark_data_type_controller.cc
+++ b/components/sync_bookmarks/bookmark_data_type_controller.cc
@@ -16,8 +16,10 @@ namespace sync_bookmarks {
BookmarkDataTypeController::BookmarkDataTypeController(
const base::Closure& dump_stack,
- sync_driver::SyncClient* sync_client)
- : FrontendDataTypeController(syncer::BOOKMARKS, dump_stack, sync_client),
+ syncer::SyncClient* sync_client)
+ : syncer::FrontendDataTypeController(syncer::BOOKMARKS,
+ dump_stack,
+ sync_client),
history_service_observer_(this),
bookmark_model_observer_(this) {}
@@ -44,7 +46,7 @@ void BookmarkDataTypeController::CleanUpState() {
void BookmarkDataTypeController::CreateSyncComponents() {
DCHECK(CalledOnValidThread());
- sync_driver::SyncApiComponentFactory::SyncComponents sync_components =
+ syncer::SyncApiComponentFactory::SyncComponents sync_components =
sync_client_->GetSyncApiComponentFactory()->CreateBookmarkSyncComponents(
sync_client_->GetSyncService(), CreateErrorHandler());
set_model_associator(sync_components.model_associator);

Powered by Google App Engine
This is Rietveld 408576698