blob: 56696151db808e50aec8c3116380cb0f24110e04 [file] [log] [blame]
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef DEBUGD_SRC_CROS_HEALTHD_TOOL_H_
#define DEBUGD_SRC_CROS_HEALTHD_TOOL_H_
#include <string>
#include <base/macros.h>
#include <brillo/errors/error.h>
namespace debugd {
class CrosHealthdTool {
public:
CrosHealthdTool() = default;
~CrosHealthdTool() = default;
bool CollectSmartBatteryMetric(brillo::ErrorPtr* error,
const std::string& metric_name,
std::string* output);
private:
DISALLOW_COPY_AND_ASSIGN(CrosHealthdTool);
};
} // namespace debugd
#endif // DEBUGD_SRC_CROS_HEALTHD_TOOL_H_