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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/preferences/autofill/AutofillProfileBridge.java

Issue 2966103002: [Payments] Show admin area complete names on PR form. (Closed)
Patch Set: Small Changes. Created 3 years, 5 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/preferences/autofill/AutofillProfileBridge.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/preferences/autofill/AutofillProfileBridge.java b/chrome/android/java/src/org/chromium/chrome/browser/preferences/autofill/AutofillProfileBridge.java
index a5bc8eb534f070ba275cd5e72b3c0951e2d54524..e4a316eb774244b372201edb7e6dcb460027d30a 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/preferences/autofill/AutofillProfileBridge.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/preferences/autofill/AutofillProfileBridge.java
@@ -101,12 +101,12 @@ public class AutofillProfileBridge {
}
/** @return The list of admin areas sorted by their localized display names. */
- public static List<DropdownKeyValue> getAdminAreaDropdownList(String[] keys) {
+ public static List<DropdownKeyValue> getAdminAreaDropdownList(
+ String[] adminAreaCodes, String[] adminAreaNames) {
List<DropdownKeyValue> adminAreas = new ArrayList<>();
- for (int i = 0; i < keys.length; ++i) {
- // TODO (parastoog): show names, save keys. @crbug.com/691643
- adminAreas.add(new DropdownKeyValue(keys[i], keys[i]));
+ for (int i = 0; i < adminAreaCodes.length; ++i) {
+ adminAreas.add(new DropdownKeyValue(adminAreaCodes[i], adminAreaNames[i]));
}
final Collator collator = Collator.getInstance(Locale.getDefault());

Powered by Google App Engine
This is Rietveld 408576698