Index: components/payments/address_normalizer.h |
diff --git a/components/payments/address_normalizer.h b/components/payments/address_normalizer.h |
index 34cac3cf3d24ec6f0f15abda5c9752c6c537ee12..9675ebefcdf1e59eb161a0fdf1613688bd299c69 100644 |
--- a/components/payments/address_normalizer.h |
+++ b/components/payments/address_normalizer.h |
@@ -5,6 +5,11 @@ |
#ifndef COMPONENTS_PAYMENTS_ADDRESS_NORMALIZER_H_ |
#define COMPONENTS_PAYMENTS_ADDRESS_NORMALIZER_H_ |
+#include <map> |
sebsg
2017/02/28 16:14:00
needed?
Parastoo
2017/03/21 14:30:44
=> git cl lint error. [build/include_what_you_see]
|
+#include <memory> |
+#include <string> |
+#include <vector> |
+ |
#include "base/macros.h" |
#include "components/autofill/core/browser/autofill_profile.h" |
#include "third_party/libaddressinput/chromium/chrome_address_validator.h" |
@@ -63,8 +68,8 @@ class AddressNormalizer : public autofill::LoadRulesListener { |
private: |
// Called when the validation rules for the |region_code| have finished |
// loading. Implementation of the LoadRulesListener interface. |
- void OnAddressValidationRulesLoaded(const std::string& region_code, |
- bool success) override; |
+ void OnAddressRulesLoaded(const std::string& region_code, |
+ bool success) override; |
// Map associating a region code to pending normalizations. |
std::map<std::string, std::vector<std::unique_ptr<Request>>> |