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

// Copyright 2022 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/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 {

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

StandaloneCvcFieldParser::~StandaloneCvcFieldParser() = default;

// static
bool StandaloneCvcFieldParser::MatchGiftCard(ParsingContext& context,
                                             AutofillScanner* scanner) {}

StandaloneCvcFieldParser::StandaloneCvcFieldParser(const AutofillField* field)
    :{}

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

}  // namespace autofill