chromium/components/autofill/core/browser/data_model/autofill_structured_address_format_provider.cc

// Copyright 2023 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/data_model/autofill_structured_address_format_provider.h"

#include <string>

#include "base/containers/fixed_flat_map.h"
#include "base/no_destructor.h"

namespace autofill {

namespace {

std::u16string GetHomeStreetAddressPattern(std::string_view country_code) {}

std::u16string GetFullNamePattern(bool name_has_cjk_characteristics) {}

}  // namespace

StructuredAddressesFormatProvider::StructuredAddressesFormatProvider() =
    default;

// static
StructuredAddressesFormatProvider*
StructuredAddressesFormatProvider::GetInstance() {}

std::u16string StructuredAddressesFormatProvider::GetPattern(
    FieldType type,
    std::string_view country_code,
    const ContextInfo& info) const {}

}  // namespace autofill