| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef COMPONENTS_SYNC_DRIVER_DEVICE_INFO_SERVICE_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_DEVICE_INFO_SERVICE_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_DEVICE_INFO_SERVICE_H_ | 6 #define COMPONENTS_SYNC_DRIVER_DEVICE_INFO_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 // device info and associated sync metadata, applying/merging foreign changes, | 39 // device info and associated sync metadata, applying/merging foreign changes, |
| 40 // and allows public read access. | 40 // and allows public read access. |
| 41 class DeviceInfoService : public syncer_v2::ModelTypeService, | 41 class DeviceInfoService : public syncer_v2::ModelTypeService, |
| 42 public sync_driver::DeviceInfoTracker { | 42 public sync_driver::DeviceInfoTracker { |
| 43 public: | 43 public: |
| 44 typedef base::Callback<void(syncer_v2::ModelTypeStore::InitCallback callback)> | 44 typedef base::Callback<void(syncer_v2::ModelTypeStore::InitCallback callback)> |
| 45 StoreFactoryFunction; | 45 StoreFactoryFunction; |
| 46 | 46 |
| 47 DeviceInfoService( | 47 DeviceInfoService( |
| 48 sync_driver::LocalDeviceInfoProvider* local_device_info_provider, | 48 sync_driver::LocalDeviceInfoProvider* local_device_info_provider, |
| 49 const StoreFactoryFunction& callback); | 49 const StoreFactoryFunction& callback, |
| 50 const ChangeProcessorFactory& change_processor_factory); |
| 50 ~DeviceInfoService() override; | 51 ~DeviceInfoService() override; |
| 51 | 52 |
| 52 // ModelTypeService implementation. | 53 // ModelTypeService implementation. |
| 53 scoped_ptr<syncer_v2::MetadataChangeList> CreateMetadataChangeList() override; | 54 scoped_ptr<syncer_v2::MetadataChangeList> CreateMetadataChangeList() override; |
| 54 syncer::SyncError MergeSyncData( | 55 syncer::SyncError MergeSyncData( |
| 55 scoped_ptr<syncer_v2::MetadataChangeList> metadata_change_list, | 56 scoped_ptr<syncer_v2::MetadataChangeList> metadata_change_list, |
| 56 syncer_v2::EntityDataMap entity_data_map) override; | 57 syncer_v2::EntityDataMap entity_data_map) override; |
| 57 syncer::SyncError ApplySyncChanges( | 58 syncer::SyncError ApplySyncChanges( |
| 58 scoped_ptr<syncer_v2::MetadataChangeList> metadata_change_list, | 59 scoped_ptr<syncer_v2::MetadataChangeList> metadata_change_list, |
| 59 syncer_v2::EntityChangeList entity_changes) override; | 60 syncer_v2::EntityChangeList entity_changes) override; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 | 147 |
| 147 // Should always be last member. | 148 // Should always be last member. |
| 148 base::WeakPtrFactory<DeviceInfoService> weak_factory_; | 149 base::WeakPtrFactory<DeviceInfoService> weak_factory_; |
| 149 | 150 |
| 150 DISALLOW_COPY_AND_ASSIGN(DeviceInfoService); | 151 DISALLOW_COPY_AND_ASSIGN(DeviceInfoService); |
| 151 }; | 152 }; |
| 152 | 153 |
| 153 } // namespace sync_driver_v2 | 154 } // namespace sync_driver_v2 |
| 154 | 155 |
| 155 #endif // COMPONENTS_SYNC_DRIVER_DEVICE_INFO_SERVICE_H_ | 156 #endif // COMPONENTS_SYNC_DRIVER_DEVICE_INFO_SERVICE_H_ |
| OLD | NEW |