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

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

Issue 2680143002: Use dropdown list for admin areas in pr form. (Closed)
Patch Set: The one where I merged the cl with seb's again. Created 3 years, 9 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 c78df001d3fe7cc3f0f0b81a5c497df7c44f14e2..841afce4cdc2c292c21930cabef160ad5681ae54 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
@@ -519,7 +519,7 @@ public class PaymentRequestImpl
String countryCode = AutofillAddress.getCountryCode(addresses.get(i).getProfile());
if (!uniqueCountryCodes.contains(countryCode)) {
uniqueCountryCodes.add(countryCode);
- PersonalDataManager.getInstance().loadRulesForRegion(countryCode);
+ PersonalDataManager.getInstance().loadRulesForAddressNormalization(countryCode);
}
}
@@ -1379,7 +1379,7 @@ public class PaymentRequestImpl
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