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

// Copyright 2019 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_LOCAL_CARD_MIGRATION_STRIKE_DATABASE_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_PAYMENTS_LOCAL_CARD_MIGRATION_STRIKE_DATABASE_H_

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

namespace autofill {

struct LocalCardMigrationStrikeDatabaseTraits {};

class LocalCardMigrationStrikeDatabase
    : public SimpleAutofillStrikeDatabase<
          LocalCardMigrationStrikeDatabaseTraits> {};

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_PAYMENTS_LOCAL_CARD_MIGRATION_STRIKE_DATABASE_H_