blob: 55d3b38f75778e47e83efd1ee37e5bbe52709027 [file] [log] [blame]
// Copyright 2020 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 DIAGNOSTICS_CROS_HEALTHD_ROUTINES_SIGNAL_STRENGTH_SIGNAL_STRENGTH_H_
#define DIAGNOSTICS_CROS_HEALTHD_ROUTINES_SIGNAL_STRENGTH_SIGNAL_STRENGTH_H_
#include <memory>
#include "diagnostics/cros_healthd/network_diagnostics/network_diagnostics_adapter.h"
#include "diagnostics/cros_healthd/routines/diag_routine.h"
namespace diagnostics {
// Status messages reported by the signal strength routine.
extern const char kSignalStrengthRoutineNoProblemMessage[];
extern const char kSignalStrengthRoutineWeakSignalProblemMessage[];
extern const char kSignalStrengthRoutineNotRunMessage[];
// Creates the signal strength connetivity routine.
std::unique_ptr<DiagnosticRoutine> CreateSignalStrengthRoutine(
NetworkDiagnosticsAdapter* network_diagnostics_adapter);
} // namespace diagnostics
#endif // DIAGNOSTICS_CROS_HEALTHD_ROUTINES_SIGNAL_STRENGTH_SIGNAL_STRENGTH_H_