#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_CROWDSOURCING_DETERMINE_POSSIBLE_FIELD_TYPES_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_CROWDSOURCING_DETERMINE_POSSIBLE_FIELD_TYPES_H_
#include <string>
#include <vector>
#include "components/autofill/core/browser/field_types.h"
namespace autofill {
class AutofillProfile;
class CreditCard;
class FormStructure;
void DeterminePossibleFieldTypesForUpload(
const std::vector<AutofillProfile>& profiles,
const std::vector<CreditCard>& credit_cards,
const std::u16string& last_unlocked_credit_card_cvc,
const std::string& app_locale,
FormStructure* form);
}
#endif