| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/sync/api/stub_model_type_service.h" | |
| 6 | |
| 7 #include "base/bind.h" | |
| 8 #include "base/memory/ptr_util.h" | |
| 9 #include "components/sync/api/fake_model_type_change_processor.h" | |
| 10 | |
| 11 namespace syncer { | |
| 12 | |
| 13 StubModelTypeService::StubModelTypeService() | |
| 14 : StubModelTypeService(base::Bind(&FakeModelTypeChangeProcessor::Create)) {} | |
| 15 | |
| 16 StubModelTypeService::StubModelTypeService( | |
| 17 const ChangeProcessorFactory& change_processor_factory) | |
| 18 : ModelTypeService(change_processor_factory, PREFERENCES) {} | |
| 19 | |
| 20 StubModelTypeService::~StubModelTypeService() {} | |
| 21 | |
| 22 std::unique_ptr<MetadataChangeList> | |
| 23 StubModelTypeService::CreateMetadataChangeList() { | |
| 24 return std::unique_ptr<MetadataChangeList>(); | |
| 25 } | |
| 26 | |
| 27 SyncError StubModelTypeService::MergeSyncData( | |
| 28 std::unique_ptr<MetadataChangeList> metadata_change_list, | |
| 29 EntityDataMap entity_data_map) { | |
| 30 return SyncError(); | |
| 31 } | |
| 32 | |
| 33 SyncError StubModelTypeService::ApplySyncChanges( | |
| 34 std::unique_ptr<MetadataChangeList> metadata_change_list, | |
| 35 EntityChangeList entity_changes) { | |
| 36 return SyncError(); | |
| 37 } | |
| 38 | |
| 39 void StubModelTypeService::GetData(StorageKeyList storage_keys, | |
| 40 DataCallback callback) {} | |
| 41 | |
| 42 void StubModelTypeService::GetAllData(DataCallback callback) {} | |
| 43 | |
| 44 std::string StubModelTypeService::GetClientTag(const EntityData& entity_data) { | |
| 45 return std::string(); | |
| 46 } | |
| 47 | |
| 48 std::string StubModelTypeService::GetStorageKey(const EntityData& entity_data) { | |
| 49 return std::string(); | |
| 50 } | |
| 51 | |
| 52 void StubModelTypeService::OnChangeProcessorSet() {} | |
| 53 | |
| 54 bool StubModelTypeService::HasChangeProcessor() const { | |
| 55 return change_processor() != nullptr; | |
| 56 } | |
| 57 | |
| 58 } // namespace syncer | |
| OLD | NEW |