#include "components/autofill/core/browser/form_parsing/travel_field_parser.h"
#include <memory>
#include <string_view>
#include <utility>
#include "components/autofill/core/browser/form_parsing/regex_patterns.h"
#include "components/autofill/core/common/autofill_regex_constants.h"
namespace autofill {
namespace {
base::span<const MatchPatternRef> GetMatchPatterns(std::string_view name,
ParsingContext& context) { … }
}
TravelFieldParser::~TravelFieldParser() = default;
std::unique_ptr<FormFieldParser> TravelFieldParser::Parse(
ParsingContext& context,
AutofillScanner* scanner) { … }
void TravelFieldParser::AddClassifications(
FieldCandidatesMap& field_candidates) const { … }
}