chromium/components/feedback/feedback_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_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 =;

}  // namespace feedback

#endif  // COMPONENTS_FEEDBACK_FEEDBACK_CONSTANTS_H_