// 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. #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_AUTOFILL_STRUCTURED_ADDRESS_FORMAT_PROVIDER_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_AUTOFILL_STRUCTURED_ADDRESS_FORMAT_PROVIDER_H_ #include <string> #include "base/no_destructor.h" #include "components/autofill/core/browser/field_types.h" namespace autofill { // This singleton class builds and caches the formatting expressions for value // formatting in an AddressComponent tree. It builds the foundation for // acquiring expressions from different countries. class StructuredAddressesFormatProvider { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_AUTOFILL_STRUCTURED_ADDRESS_FORMAT_PROVIDER_H_