#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_ADDRESS_SUGGESTION_STRIKE_DATABASE_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_ADDRESS_SUGGESTION_STRIKE_DATABASE_H_
#include <optional>
#include <set>
#include <string>
#include "components/autofill/core/browser/strike_databases/history_clearable_strike_database.h"
#include "components/autofill/core/browser/strike_databases/strike_database_integrator_base.h"
#include "components/autofill/core/common/autofill_features.h"
#include "components/autofill/core/common/signatures.h"
#include "url/gurl.h"
namespace autofill {
struct AddressSuggestionStrikeDatabaseTraits { … };
class AddressSuggestionStrikeDatabase
: public HistoryClearableStrikeDatabase<
AddressSuggestionStrikeDatabaseTraits> { … };
}
#endif