#ifndef COMPONENTS_ENTERPRISE_CONNECTORS_CORE_REPORTING_CONSTANTS_H_
#define COMPONENTS_ENTERPRISE_CONNECTORS_CORE_REPORTING_CONSTANTS_H_
#include <array>
namespace enterprise_connectors {
inline constexpr char kExtensionInstallEvent[] = …;
inline constexpr char kExtensionTelemetryEvent[] = …;
inline constexpr char kBrowserCrashEvent[] = …;
inline constexpr char kKeyUrlFilteringInterstitialEvent[] = …;
inline constexpr char kKeyPasswordReuseEvent[] = …;
inline constexpr char kKeyPasswordChangedEvent[] = …;
inline constexpr char kKeyDangerousDownloadEvent[] = …;
inline constexpr char kKeyInterstitialEvent[] = …;
inline constexpr char kKeySensitiveDataEvent[] = …;
inline constexpr char kKeyUnscannedFileEvent[] = …;
inline constexpr char kKeyLoginEvent[] = …;
inline constexpr char kKeyPasswordBreachEvent[] = …;
inline constexpr std::array<const char*, 12> kAllReportingEvents = …;
}
#endif