chromium/components/autofill/core/browser/field_type_utils.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/field_type_utils.h"

#include "base/check.h"
#include "base/containers/fixed_flat_map.h"
#include "base/notreached.h"
#include "components/autofill/core/browser/autofill_type.h"
#include "components/autofill/core/browser/field_types.h"

namespace autofill {

const FieldTypeSet& GetDatabaseStoredTypesOfAutofillProfile() {}

size_t NumberOfPossibleFieldTypesInGroup(const AutofillField& field,
                                         FieldTypeGroup group) {}

bool FieldHasMeaningfulPossibleFieldTypes(const AutofillField& field) {}

bool TypeOfFieldIsPossibleType(const AutofillField& field) {}

bool IsAddressType(FieldType type) {}

size_t AddressLineIndex(FieldType type) {}

size_t DetermineExpirationYearLength(FieldType assumed_field_type) {}

}  // namespace autofill