// 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_SUGGESTIONS_CONTEXT_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_SUGGESTIONS_CONTEXT_H_ #include "base/memory/raw_ptr_exclusion.h" #include "components/autofill/core/browser/autofill_ablation_study.h" #include "components/autofill/core/browser/filling_product.h" #include "components/autofill/core/browser/form_structure.h" namespace autofill { // Indicates the reason why autofill suggestions are suppressed. enum class SuppressReason { … }; // The context for the list of suggestions available for a given field. struct SuggestionsContext { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_SUGGESTIONS_CONTEXT_H_