Chromium Code Reviews| Index: components/payments/core/address_normalizer.h |
| diff --git a/components/payments/core/address_normalizer.h b/components/payments/core/address_normalizer.h |
| index f3d2a240fb59de2a2e5db65cd330bf6b2de7cf34..4935908398aa7b7b6a622dce3efdaed5a204578f 100644 |
| --- a/components/payments/core/address_normalizer.h |
| +++ b/components/payments/core/address_normalizer.h |
| @@ -5,11 +5,6 @@ |
| #ifndef COMPONENTS_PAYMENTS_CORE_ADDRESS_NORMALIZER_H_ |
| #define COMPONENTS_PAYMENTS_CORE_ADDRESS_NORMALIZER_H_ |
| -#include <map> |
| -#include <memory> |
| -#include <string> |
| -#include <vector> |
|
please use gerrit instead
2017/03/30 18:48:59
Deleted by mistake?
Parastoo
2017/03/31 15:44:14
Done.
|
| - |
| #include "base/macros.h" |
| #include "third_party/libaddressinput/chromium/chrome_address_validator.h" |
| @@ -76,8 +71,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>>> |