chromium/components/autofill/core/browser/payments/constants.h

// Copyright 2023 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_AUTOFILL_CORE_BROWSER_PAYMENTS_CONSTANTS_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_CONSTANTS_H_

namespace autofill {

// Contains constants specific to the payments Autofill used in the browser
// process.

// Credit card issuer ids. These are server-generated values that must be
// consistent between server and client.
inline constexpr std::string_view kAmexCardIssuerId =;
inline constexpr std::string_view kAnzCardIssuerId =;
inline constexpr std::string_view kCapitalOneCardIssuerId =;
inline constexpr std::string_view kChaseCardIssuerId =;
inline constexpr std::string_view kCitiCardIssuerId =;
inline constexpr std::string_view kDiscoverCardIssuerId =;
inline constexpr std::string_view kLloydsCardIssuerId =;
inline constexpr std::string_view kMarqetaCardIssuerId =;
inline constexpr std::string_view kNabCardIssuerId =;
inline constexpr std::string_view kNatwestCardIssuerId =;

// The urls to the static card art images used by Capital One cards.
inline constexpr std::string_view kCapitalOneCardArtUrl =;
inline constexpr std::string_view kCapitalOneLargeCardArtUrl =;

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_CONSTANTS_H_