chromium/components/autofill/core/browser/strike_databases/payments/virtual_card_enrollment_strike_database.h

// Copyright 2022 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_STRIKE_DATABASES_PAYMENTS_VIRTUAL_CARD_ENROLLMENT_STRIKE_DATABASE_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_PAYMENTS_VIRTUAL_CARD_ENROLLMENT_STRIKE_DATABASE_H_

#include <string>

#include "components/autofill/core/browser/strike_databases/simple_autofill_strike_database.h"

namespace autofill {

// The delay required since the last strike before offering another virtual card
// enrollment attempt.
constexpr int kEnrollmentEnforcedDelayInDays =;

struct VirtualCardEnrollmentStrikeDatabaseTraits {};

class VirtualCardEnrollmentStrikeDatabase
    : public SimpleAutofillStrikeDatabase<
          VirtualCardEnrollmentStrikeDatabaseTraits> {};

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_PAYMENTS_VIRTUAL_CARD_ENROLLMENT_STRIKE_DATABASE_H_