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

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: Another one with addressing Math's comments. 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 74283028cd88bbb5220504d018cfb630956454f3..37c85c1b7c52ea858864dc253383f453bb6ff9e2 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
@@ -527,7 +527,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);
}
}
@@ -1385,7 +1385,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