blob: 13f449ae613f07ef3d1c0966f0a4c2f480220ecd [file] [log] [blame]
// Copyright 2021 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 SECANOMALYD_METRICS_H_
#define SECANOMALYD_METRICS_H_
#include <string>
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class SecurityAnomaly {
kMountInitNsWx = 0,
kMaxValue = kMountInitNsWx,
};
bool SendSecurityAnomalyToUMA(SecurityAnomaly secanomaly);
#endif // SECANOMALYD_METRICS_H_