chromium/components/autofill/core/browser/form_types.cc

// Copyright 2013 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_types.h"

#include "base/containers/contains.h"
#include "components/autofill/core/browser/field_types.h"
#include "components/autofill/core/browser/form_structure.h"
#include "components/autofill/core/common/autofill_util.h"

namespace autofill {

FormType FieldTypeGroupToFormType(FieldTypeGroup field_type_group) {}

std::string_view FormTypeToStringView(FormType form_type) {}

// When adding a new return value, update variants "AutofillFormType.Fillable"
// and "AutofillFormType.Address" in
// tools/metrics/histograms/metadata/autofill/histograms.xml accordingly.
std::string_view FormTypeNameForLoggingToStringView(
    FormTypeNameForLogging form_type_name) {}

bool FormHasAllCreditCardFields(const FormStructure& form_structure) {}

}  // namespace autofill