chromium/components/reporting/health/health_module_delegate_impl.h

// 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_IMPL_H_
#define COMPONENTS_REPORTING_HEALTH_HEALTH_MODULE_DELEGATE_IMPL_H_

#include <memory>
#include <string>

#include "base/files/file.h"
#include "base/sequence_checker.h"
#include "base/thread_annotations.h"
#include "components/reporting/health/health_module_delegate.h"
#include "components/reporting/health/health_module_files.h"
#include "components/reporting/proto/synced/record.pb.h"
#include "components/reporting/util/status.h"
#include "components/reporting/util/statusor.h"

namespace reporting {

// The HealthModuleDelegateImpl is a prod implementation of
// HealthModule::Delegate interface. Keeps track of the local data of ERP Health
// and owns the HealthModuleFiles class which is written to and read from this
// class.
class HealthModuleDelegateImpl : public HealthModuleDelegate {};
}  // namespace reporting

#endif  // COMPONENTS_REPORTING_HEALTH_HEALTH_MODULE_DELEGATE_IMPL_H_