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

Side by Side Diff: components/sync/driver/generic_change_processor_factory.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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/sync/driver/generic_change_processor_factory.h" 5 #include "components/sync/driver/generic_change_processor_factory.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/memory/ptr_util.h" 9 #include "base/memory/ptr_util.h"
10 #include "components/sync/api/syncable_service.h" 10 #include "components/sync/api/syncable_service.h"
11 #include "components/sync/driver/generic_change_processor.h" 11 #include "components/sync/driver/generic_change_processor.h"
12 12
13 namespace syncer { 13 namespace sync_driver {
14 14
15 GenericChangeProcessorFactory::GenericChangeProcessorFactory() {} 15 GenericChangeProcessorFactory::GenericChangeProcessorFactory() {}
16 16
17 GenericChangeProcessorFactory::~GenericChangeProcessorFactory() {} 17 GenericChangeProcessorFactory::~GenericChangeProcessorFactory() {}
18 18
19 std::unique_ptr<GenericChangeProcessor> 19 std::unique_ptr<GenericChangeProcessor>
20 GenericChangeProcessorFactory::CreateGenericChangeProcessor( 20 GenericChangeProcessorFactory::CreateGenericChangeProcessor(
21 ModelType type, 21 syncer::ModelType type,
22 UserShare* user_share, 22 syncer::UserShare* user_share,
23 std::unique_ptr<DataTypeErrorHandler> error_handler, 23 std::unique_ptr<syncer::DataTypeErrorHandler> error_handler,
24 const base::WeakPtr<SyncableService>& local_service, 24 const base::WeakPtr<syncer::SyncableService>& local_service,
25 const base::WeakPtr<SyncMergeResult>& merge_result, 25 const base::WeakPtr<syncer::SyncMergeResult>& merge_result,
26 SyncClient* sync_client) { 26 SyncClient* sync_client) {
27 DCHECK(user_share); 27 DCHECK(user_share);
28 return base::MakeUnique<GenericChangeProcessor>( 28 return base::MakeUnique<GenericChangeProcessor>(
29 type, std::move(error_handler), local_service, merge_result, user_share, 29 type, std::move(error_handler), local_service, merge_result, user_share,
30 sync_client, local_service->GetAttachmentStoreForSync()); 30 sync_client, local_service->GetAttachmentStoreForSync());
31 } 31 }
32 32
33 } // namespace syncer 33 } // namespace sync_driver
OLDNEW
« 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