#include "components/autofill/core/browser/form_parsing/numeric_quantity_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/browser/form_parsing/regex_patterns.h"
#include "components/autofill/core/common/autofill_regex_constants.h"
namespace autofill {
std::unique_ptr<FormFieldParser> NumericQuantityFieldParser::Parse(
ParsingContext& context,
AutofillScanner* scanner) { … }
NumericQuantityFieldParser::NumericQuantityFieldParser(
const AutofillField* field)
: … { … }
void NumericQuantityFieldParser::AddClassifications(
FieldCandidatesMap& field_candidates) const { … }
}