chromium/components/reporting/health/health_module_delegate.cc

// 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.

#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() {}
}  // namespace reporting