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

Side by Side Diff: components/sync/driver/generic_change_processor_factory.cc

Issue 2289143003: [Sync] Convert DTCs to be not RefCounted and NonThreadSafe. (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 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>
8
7 #include "base/memory/ptr_util.h" 9 #include "base/memory/ptr_util.h"
8 #include "components/sync/api/syncable_service.h" 10 #include "components/sync/api/syncable_service.h"
9 #include "components/sync/driver/generic_change_processor.h" 11 #include "components/sync/driver/generic_change_processor.h"
10 12
11 namespace sync_driver { 13 namespace sync_driver {
12 14
13 GenericChangeProcessorFactory::GenericChangeProcessorFactory() {} 15 GenericChangeProcessorFactory::GenericChangeProcessorFactory() {}
14 16
15 GenericChangeProcessorFactory::~GenericChangeProcessorFactory() {} 17 GenericChangeProcessorFactory::~GenericChangeProcessorFactory() {}
16 18
17 std::unique_ptr<GenericChangeProcessor> 19 std::unique_ptr<GenericChangeProcessor>
18 GenericChangeProcessorFactory::CreateGenericChangeProcessor( 20 GenericChangeProcessorFactory::CreateGenericChangeProcessor(
19 syncer::ModelType type, 21 syncer::ModelType type,
20 syncer::UserShare* user_share, 22 syncer::UserShare* user_share,
21 syncer::DataTypeErrorHandler* error_handler, 23 std::unique_ptr<syncer::DataTypeErrorHandler> error_handler,
22 const base::WeakPtr<syncer::SyncableService>& local_service, 24 const base::WeakPtr<syncer::SyncableService>& local_service,
23 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, 25 const base::WeakPtr<syncer::SyncMergeResult>& merge_result,
24 SyncClient* sync_client) { 26 SyncClient* sync_client) {
25 DCHECK(user_share); 27 DCHECK(user_share);
26 return base::MakeUnique<GenericChangeProcessor>( 28 return base::MakeUnique<GenericChangeProcessor>(
27 type, error_handler, local_service, merge_result, user_share, sync_client, 29 type, std::move(error_handler), local_service, merge_result, user_share,
28 local_service->GetAttachmentStoreForSync()); 30 sync_client, local_service->GetAttachmentStoreForSync());
29 } 31 }
30 32
31 } // namespace sync_driver 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