#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_FILLING_PRODUCT_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_FILLING_PRODUCT_H_
#include "components/autofill/core/browser/field_types.h"
#include "components/autofill/core/browser/ui/suggestion_type.h"
#include "components/autofill/core/common/aliases.h"
namespace autofill {
enum class FillingProduct { … };
FillingProduct GetFillingProductFromSuggestionType(SuggestionType type);
FillingProduct GetFillingProductFromFieldTypeGroup(
FieldTypeGroup field_type_group);
FillingProduct GetPreferredSuggestionFillingProduct(
FieldType trigger_field_type,
AutofillSuggestionTriggerSource suggestion_trigger_source);
std::string FillingProductToString(FillingProduct filling_product);
}
#endif