chromium/components/enterprise/connectors/core/reporting_constants.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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[] =;

// All events that the reporting connector supports.
inline constexpr std::array<const char*, 12> kAllReportingEvents =;

}  // namespace enterprise_connectors

#endif  // COMPONENTS_ENTERPRISE_CONNECTORS_CORE_REPORTING_CONSTANTS_H_