| // Copyright 2019 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CHROME_BROWSER_SECURITY_EVENTS_SECURITY_EVENT_SYNC_BRIDGE_IMPL_H_ |
| #define CHROME_BROWSER_SECURITY_EVENTS_SECURITY_EVENT_SYNC_BRIDGE_IMPL_H_ |
| |
| #include <memory> |
| #include <string> |
| |
| #include "base/memory/weak_ptr.h" |
| #include "chrome/browser/security_events/security_event_sync_bridge.h" |
| #include "components/sync/model/model_type_change_processor.h" |
| #include "components/sync/model/model_type_store.h" |
| #include "components/sync/model/model_type_sync_bridge.h" |
| #include "third_party/abseil-cpp/absl/types/optional.h" |
| |
| class SecurityEventSyncBridgeImpl : public SecurityEventSyncBridge, |
| public syncer::ModelTypeSyncBridge { |
| public: |
| SecurityEventSyncBridgeImpl( |
| syncer::OnceModelTypeStoreFactory store_factory, |
| std::unique_ptr<syncer::ModelTypeChangeProcessor> change_processor); |
| |
| SecurityEventSyncBridgeImpl(const SecurityEventSyncBridgeImpl&) = delete; |
| SecurityEventSyncBridgeImpl& operator=(const SecurityEventSyncBridgeImpl&) = |
| delete; |
| |
| ~SecurityEventSyncBridgeImpl() override; |
| |
| void RecordSecurityEvent(sync_pb::SecurityEventSpecifics specifics) override; |
| |
| base::WeakPtr<syncer::ModelTypeControllerDelegate> GetControllerDelegate() |
| override; |
| |
| // ModelTypeSyncBridge implementation. |
| std::unique_ptr<syncer::MetadataChangeList> CreateMetadataChangeList() |
| override; |
| absl::optional<syncer::ModelError> MergeFullSyncData( |
| std::unique_ptr<syncer::MetadataChangeList> metadata_change_list, |
| syncer::EntityChangeList entity_data) override; |
| absl::optional<syncer::ModelError> ApplyIncrementalSyncChanges( |
| std::unique_ptr<syncer::MetadataChangeList> metadata_change_list, |
| syncer::EntityChangeList entity_changes) override; |
| void GetData(StorageKeyList storage_keys, DataCallback callback) override; |
| void GetAllDataForDebugging(DataCallback callback) override; |
| std::string GetClientTag(const syncer::EntityData& entity_data) override; |
| std::string GetStorageKey(const syncer::EntityData& entity_data) override; |
| void ApplyDisableSyncChanges(std::unique_ptr<syncer::MetadataChangeList> |
| delete_metadata_change_list) override; |
| |
| private: |
| void OnStoreCreated(const absl::optional<syncer::ModelError>& error, |
| std::unique_ptr<syncer::ModelTypeStore> store); |
| |
| void OnReadData( |
| DataCallback callback, |
| const absl::optional<syncer::ModelError>& error, |
| std::unique_ptr<syncer::ModelTypeStore::RecordList> data_records, |
| std::unique_ptr<syncer::ModelTypeStore::IdList> missing_id_list); |
| |
| void OnReadAllData( |
| DataCallback callback, |
| const absl::optional<syncer::ModelError>& error, |
| std::unique_ptr<syncer::ModelTypeStore::RecordList> data_records); |
| |
| void OnReadAllMetadata(const absl::optional<syncer::ModelError>& error, |
| std::unique_ptr<syncer::MetadataBatch> metadata_batch); |
| |
| void OnCommit(const absl::optional<syncer::ModelError>& error); |
| |
| std::unique_ptr<syncer::ModelTypeStore> store_; |
| |
| base::WeakPtrFactory<SecurityEventSyncBridgeImpl> weak_ptr_factory_{this}; |
| }; |
| |
| #endif // CHROME_BROWSER_SECURITY_EVENTS_SECURITY_EVENT_SYNC_BRIDGE_IMPL_H_ |