#include "components/autofill/core/browser/form_parsing/standalone_cvc_field_parser.h"
#include "components/autofill/core/browser/autofill_field.h"
#include "components/autofill/core/browser/form_parsing/autofill_scanner.h"
#include "components/autofill/core/common/autofill_payments_features.h"
#include "components/autofill/core/common/autofill_regex_constants.h"
#include "components/autofill/core/common/autofill_regexes.h"
namespace autofill {
std::unique_ptr<FormFieldParser> StandaloneCvcFieldParser::Parse(
ParsingContext& context,
AutofillScanner* scanner) { … }
StandaloneCvcFieldParser::~StandaloneCvcFieldParser() = default;
bool StandaloneCvcFieldParser::MatchGiftCard(ParsingContext& context,
AutofillScanner* scanner) { … }
StandaloneCvcFieldParser::StandaloneCvcFieldParser(const AutofillField* field)
: … { … }
void StandaloneCvcFieldParser::AddClassifications(
FieldCandidatesMap& field_candidates) const { … }
}