Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4991)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java

Issue 2866643004: [Reland] Use dropdown list for admin areas in pr form. (Closed)
Patch Set: Nit Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java
index d6d3b11a2a766a6bb94c176e550eae415294c97f..a84838af63040890614ab63b0db511859e00447a 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java
@@ -552,7 +552,7 @@ public class PaymentRequestImpl implements PaymentRequest, PaymentRequestUI.Clie
String countryCode = AutofillAddress.getCountryCode(addresses.get(i).getProfile());
if (!uniqueCountryCodes.contains(countryCode)) {
uniqueCountryCodes.add(countryCode);
- PersonalDataManager.getInstance().loadRulesForRegion(countryCode);
+ PersonalDataManager.getInstance().loadRulesForAddressNormalization(countryCode);
}
}
@@ -1463,7 +1463,7 @@ public class PaymentRequestImpl implements PaymentRequest, PaymentRequestUI.Clie
String countryCode = AutofillAddress.getCountryCode(creditCard.getBillingAddress());
if (!uniqueCountryCodes.contains(countryCode)) {
uniqueCountryCodes.add(countryCode);
- PersonalDataManager.getInstance().loadRulesForRegion(countryCode);
+ PersonalDataManager.getInstance().loadRulesForAddressNormalization(countryCode);
}
// If there's a card on file with a valid number and a name, then

Powered by Google App Engine
This is Rietveld 408576698