#ifndef ASH_SYSTEM_HUMAN_PRESENCE_HUMAN_PRESENCE_METRICS_H_
#define ASH_SYSTEM_HUMAN_PRESENCE_HUMAN_PRESENCE_METRICS_H_
#include "base/time/time.h"
namespace ash {
namespace snooping_protection_metrics {
constexpr char kEnabledHistogramName[] =
"ChromeOS.HPS.SnoopingProtection.Enabled";
constexpr char kPositiveDurationHistogramName[] =
"ChromeOS.HPS.SnoopingProtection.Positive.Duration";
constexpr char kNegativeDurationHistogramName[] =
"ChromeOS.HPS.SnoopingProtection.Negative.Duration";
constexpr char kFlakeyHistogramName[] =
"ChromeOS.HPS.SnoopingProtection.FlakeyDetection";
constexpr char kNotificationSuppressionEnabledHistogramName[] =
"ChromeOS.HPS.SnoopingProtectionNotificationSuppression.Enabled";
constexpr int kDurationNumBuckets = 100;
constexpr base::TimeDelta kDurationMin = base::Seconds(1);
constexpr base::TimeDelta kPositiveDurationMax = base::Hours(1);
constexpr base::TimeDelta kNegativeDurationMax = base::Hours(24);
}
namespace quick_dim_metrics {
constexpr char kEnabledHistogramName[] = "ChromeOS.HPS.QuickDim.Enabled";
}
}
#endif