// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_REPORTING_HEALTH_HEALTH_MODULE_DELEGATE_H_ #define COMPONENTS_REPORTING_HEALTH_HEALTH_MODULE_DELEGATE_H_ #include "base/functional/callback.h" #include "base/memory/weak_ptr.h" #include "base/sequence_checker.h" #include "base/thread_annotations.h" #include "components/reporting/proto/synced/record.pb.h" #include "components/reporting/util/status.h" namespace reporting { HealthCallback; // Interface between the Health Module and the underlying data that needs to // be stored. Fully implemented for production, overridden for testing. class HealthModuleDelegate { … }; } // namespace reporting #endif // COMPONENTS_REPORTING_HEALTH_HEALTH_MODULE_DELEGATE_H_