#include "components/reporting/health/health_module_delegate.h"
#include <memory>
#include <utility>
#include "base/functional/bind.h"
#include "base/logging.h"
namespace reporting {
HealthModuleDelegate::HealthModuleDelegate() { … }
HealthModuleDelegate::~HealthModuleDelegate() { … }
void HealthModuleDelegate::Init() { … }
bool HealthModuleDelegate::IsInitialized() const { … }
void HealthModuleDelegate::GetERPHealthData(HealthCallback cb) const { … }
void HealthModuleDelegate::PostHealthRecord(HealthDataHistory record) { … }
base::WeakPtr<HealthModuleDelegate> HealthModuleDelegate::GetWeakPtr() { … }
}