// Copyright 2021 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_AUTOFILL_PROFILE_SAVE_STRIKE_DATABASE_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_AUTOFILL_PROFILE_SAVE_STRIKE_DATABASE_H_ #include <set> #include <string> #include "components/autofill/core/browser/strike_databases/history_clearable_strike_database.h" namespace autofill { struct AutofillProfileSaveStrikeDatabaseTraits { … }; // Records the number of times a user declines saving their Autofill profile and // stops prompting the user to do so after reaching a strike limit. AutofillProfileSaveStrikeDatabase; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_STRIKE_DATABASES_AUTOFILL_PROFILE_SAVE_STRIKE_DATABASE_H_