// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_METADATA_SOURCE_H_ #define THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_METADATA_SOURCE_H_ #include <list> #include <memory> #include <string> #include "base/memory/scoped_refptr.h" #include "third_party/libaddressinput/src/cpp/include/libaddressinput/source.h" namespace network { class SharedURLLoaderFactory; class SimpleURLLoader; } namespace autofill { // A class for downloading rules to let libaddressinput validate international // addresses. class ChromeMetadataSource : public ::i18n::addressinput::Source { … }; } // namespace autofill #endif // THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_METADATA_SOURCE_H_