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

Unified Diff: components/sync_driver/generic_change_processor_factory.cc

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 years, 4 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_driver/generic_change_processor_factory.cc
diff --git a/components/sync_driver/generic_change_processor_factory.cc b/components/sync_driver/generic_change_processor_factory.cc
deleted file mode 100644
index 44b541462ac6880974b849bc6e41fd7550827eef..0000000000000000000000000000000000000000
--- a/components/sync_driver/generic_change_processor_factory.cc
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "components/sync_driver/generic_change_processor_factory.h"
-
-#include "base/memory/ptr_util.h"
-#include "components/sync/api/syncable_service.h"
-#include "components/sync_driver/generic_change_processor.h"
-
-namespace sync_driver {
-
-
-GenericChangeProcessorFactory::GenericChangeProcessorFactory() {}
-
-GenericChangeProcessorFactory::~GenericChangeProcessorFactory() {}
-
-std::unique_ptr<GenericChangeProcessor>
-GenericChangeProcessorFactory::CreateGenericChangeProcessor(
- syncer::ModelType type,
- syncer::UserShare* user_share,
- syncer::DataTypeErrorHandler* error_handler,
- const base::WeakPtr<syncer::SyncableService>& local_service,
- const base::WeakPtr<syncer::SyncMergeResult>& merge_result,
- SyncClient* sync_client) {
- DCHECK(user_share);
- return base::WrapUnique(new GenericChangeProcessor(
- type, error_handler, local_service, merge_result, user_share, sync_client,
- local_service->GetAttachmentStoreForSync()));
-}
-
-} // namespace sync_driver
« no previous file with comments | « components/sync_driver/generic_change_processor_factory.h ('k') | components/sync_driver/generic_change_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698