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

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: Supress error-- suggested by clank team Created 3 years, 8 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 41176e4dd1e0c7b4d18e7d55d359b8799b9a0ba1..1f1b9f7b87ee3731c1db7f3c846bab470c3d82c0 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
@@ -529,7 +529,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);
}
}
@@ -1387,7 +1387,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