chromium/components/reporting/health/health_module_files.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_FILES_H_
#define COMPONENTS_REPORTING_HEALTH_HEALTH_MODULE_FILES_H_

#include <map>
#include <memory>
#include <string>

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

namespace reporting {

// HealthModuleFiles is a module used by the health module to persistently
// store ERP Health data. It contains the logic for reading and writing data to
// files and populating the ERPHealthData proto. Accesses to the underlying
// files should be called on the same sequenced task runner to achieve mutual
// exclusion.
class HealthModuleFiles {};
}  // namespace reporting

#endif  // COMPONENTS_REPORTING_HEALTH_HEALTH_MODULE_FILES_H_