OLD | NEW |
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/fake_generic_change_processor.h" | 5 #include "components/sync_driver/fake_generic_change_processor.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/location.h" | 9 #include "base/location.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 FakeGenericChangeProcessorFactory::FakeGenericChangeProcessorFactory( | 70 FakeGenericChangeProcessorFactory::FakeGenericChangeProcessorFactory( |
71 std::unique_ptr<FakeGenericChangeProcessor> processor) | 71 std::unique_ptr<FakeGenericChangeProcessor> processor) |
72 : processor_(std::move(processor)) {} | 72 : processor_(std::move(processor)) {} |
73 | 73 |
74 FakeGenericChangeProcessorFactory::~FakeGenericChangeProcessorFactory() {} | 74 FakeGenericChangeProcessorFactory::~FakeGenericChangeProcessorFactory() {} |
75 | 75 |
76 std::unique_ptr<GenericChangeProcessor> | 76 std::unique_ptr<GenericChangeProcessor> |
77 FakeGenericChangeProcessorFactory::CreateGenericChangeProcessor( | 77 FakeGenericChangeProcessorFactory::CreateGenericChangeProcessor( |
78 syncer::ModelType type, | 78 syncer::ModelType type, |
79 syncer::UserShare* user_share, | 79 syncer::UserShare* user_share, |
80 DataTypeErrorHandler* error_handler, | 80 syncer::DataTypeErrorHandler* error_handler, |
81 const base::WeakPtr<syncer::SyncableService>& local_service, | 81 const base::WeakPtr<syncer::SyncableService>& local_service, |
82 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, | 82 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, |
83 SyncClient* sync_client) { | 83 SyncClient* sync_client) { |
84 return std::move(processor_); | 84 return std::move(processor_); |
85 } | 85 } |
86 | 86 |
87 } // namespace sync_driver | 87 } // namespace sync_driver |
OLD | NEW |