| 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" |
| 11 #include "components/sync/model/syncable_service.h" | 11 #include "components/sync/model/syncable_service.h" |
| 12 | 12 |
| 13 namespace syncer { | 13 namespace syncer { |
| 14 | 14 |
| 15 FakeGenericChangeProcessor::FakeGenericChangeProcessor(ModelType type, | 15 FakeGenericChangeProcessor::FakeGenericChangeProcessor(ModelType type, |
| 16 SyncClient* sync_client) | 16 SyncClient* sync_client) |
| 17 : GenericChangeProcessor(type, | 17 : GenericChangeProcessor(type, |
| 18 NULL, | 18 nullptr, |
| 19 base::WeakPtr<SyncableService>(), | 19 base::WeakPtr<SyncableService>(), |
| 20 base::WeakPtr<SyncMergeResult>(), | 20 base::WeakPtr<SyncMergeResult>(), |
| 21 NULL, | 21 nullptr, |
| 22 sync_client, | 22 sync_client, |
| 23 nullptr), | 23 nullptr), |
| 24 sync_model_has_user_created_nodes_(true), | 24 sync_model_has_user_created_nodes_(true), |
| 25 sync_model_has_user_created_nodes_success_(true) {} | 25 sync_model_has_user_created_nodes_success_(true) {} |
| 26 | 26 |
| 27 FakeGenericChangeProcessor::~FakeGenericChangeProcessor() {} | 27 FakeGenericChangeProcessor::~FakeGenericChangeProcessor() {} |
| 28 | 28 |
| 29 void FakeGenericChangeProcessor::set_sync_model_has_user_created_nodes( | 29 void FakeGenericChangeProcessor::set_sync_model_has_user_created_nodes( |
| 30 bool has_nodes) { | 30 bool has_nodes) { |
| 31 sync_model_has_user_created_nodes_ = has_nodes; | 31 sync_model_has_user_created_nodes_ = has_nodes; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 ModelType type, | 75 ModelType type, |
| 76 UserShare* user_share, | 76 UserShare* user_share, |
| 77 std::unique_ptr<DataTypeErrorHandler> error_handler, | 77 std::unique_ptr<DataTypeErrorHandler> error_handler, |
| 78 const base::WeakPtr<SyncableService>& local_service, | 78 const base::WeakPtr<SyncableService>& local_service, |
| 79 const base::WeakPtr<SyncMergeResult>& merge_result, | 79 const base::WeakPtr<SyncMergeResult>& merge_result, |
| 80 SyncClient* sync_client) { | 80 SyncClient* sync_client) { |
| 81 return std::move(processor_); | 81 return std::move(processor_); |
| 82 } | 82 } |
| 83 | 83 |
| 84 } // namespace syncer | 84 } // namespace syncer |
| OLD | NEW |