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

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

Issue 2093363002: Autofill address editor in PaymentRequest UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@contact-editor
Patch Set: Created 4 years, 6 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/AutofillCreditCardEditor.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/preferences/autofill/AutofillCreditCardEditor.java b/chrome/android/java/src/org/chromium/chrome/browser/preferences/autofill/AutofillCreditCardEditor.java
index 97a79385df0d4d77ac11eae2bc918e3d76ac9782..d234b51d355e16bab0a2b0800bbf584e187bb2af 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/preferences/autofill/AutofillCreditCardEditor.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/preferences/autofill/AutofillCreditCardEditor.java
@@ -119,6 +119,7 @@ public class AutofillCreditCardEditor extends AutofillEditorBase {
ArrayAdapter<AutofillProfile> profilesAdapter = new ArrayAdapter<AutofillProfile>(
getActivity(), android.R.layout.simple_spinner_item);
+ profilesAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
please use gerrit instead 2016/06/27 16:46:32 Makes the billing address selector drop downs tall
profilesAdapter.add(new AutofillProfile()); // Indicates no selection.
List<AutofillProfile> profiles = PersonalDataManager.getInstance().getProfilesForSettings();
for (int i = 0; i < profiles.size(); i++) {

Powered by Google App Engine
This is Rietveld 408576698