#ifndef COMPONENTS_FEEDBACK_FEEDBACK_CONSTANTS_H_
#define COMPONENTS_FEEDBACK_FEEDBACK_CONSTANTS_H_
#include <string>
namespace feedback {
inline constexpr std::string_view kMahiMetadataKey = …;
inline constexpr std::string_view kSeaPenMetadataKey = …;
inline constexpr std::string_view kConchMetadataKey = …;
#if BUILDFLAG(IS_CHROMEOS_ASH)
inline constexpr int kChromeOSProductId = 208;
#endif
inline constexpr int kChromeBrowserProductId = …;
inline constexpr int kOrcaFeedbackProductId = …;
inline constexpr int kMahiFeedbackProductId = …;
inline constexpr int kLobsterFeedbackProductId = …;
}
#endif