// Copyright 2017 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_ADDRESS_NORMALIZER_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_ADDRESS_NORMALIZER_H_ #include <string> #include "base/functional/callback_forward.h" #include "build/build_config.h" #include "third_party/libaddressinput/chromium/chrome_address_validator.h" #if BUILDFLAG(IS_ANDROID) #include "base/android/scoped_java_ref.h" #endif namespace autofill { class AutofillProfile; // A class used to normalize addresses. class AddressNormalizer : public LoadRulesListener { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_ADDRESS_NORMALIZER_H_