chromium/components/autofill/core/browser/form_parsing/travel_field_parser.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}
}  // namespace

TravelFieldParser::~TravelFieldParser() = default;

// static
std::unique_ptr<FormFieldParser> TravelFieldParser::Parse(
    ParsingContext& context,
    AutofillScanner* scanner) {}

void TravelFieldParser::AddClassifications(
    FieldCandidatesMap& field_candidates) const {}

}  // namespace autofill