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

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

Issue 2463293005: [Merge M-55] Increase spacing for payment request credit card and address editors (Closed)
Patch Set: Created 4 years, 1 month 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/CardEditor.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/CardEditor.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/CardEditor.java
index 1d27dcf4beaad0b2044822a57c9b124bd1760f97..6ab4542d8106311d844eab70f338c0d30233c08c 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/payments/CardEditor.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/CardEditor.java
@@ -269,9 +269,8 @@ public class CardEditor extends EditorBase<AutofillPaymentInstrument>
// The title of the editor depends on whether we're adding a new card or editing an existing
// card.
- final EditorModel editor = new EditorModel(mContext.getString(isNewCard
- ? R.string.autofill_create_credit_card
- : R.string.autofill_edit_credit_card));
+ final EditorModel editor = new EditorModel(mContext.getString(
+ isNewCard ? R.string.payments_create_card : R.string.payments_edit_card));
if (card.getIsLocal()) {
Calendar calendar = null;

Powered by Google App Engine
This is Rietveld 408576698