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

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

Issue 2503543003: [Payments] Add text when shopping card total is updated. (Closed)
Patch Set: Fixed Comments 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/ui/PaymentRequestUI.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/ui/PaymentRequestUI.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/ui/PaymentRequestUI.java
index 0fb25772e98927a58ff1608173b615ce0ecdc049..1a9cf49b463d05d4b855403113580228681426c0 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/payments/ui/PaymentRequestUI.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/ui/PaymentRequestUI.java
@@ -510,8 +510,9 @@ public class PaymentRequestUI implements DialogInterface.OnDismissListener, View
mPaymentContainer = (ScrollView) mRequestView.findViewById(R.id.option_container);
mPaymentContainerLayout =
(LinearLayout) mRequestView.findViewById(R.id.payment_container_layout);
- mOrderSummarySection = new LineItemBreakdownSection(
- activity, activity.getString(R.string.payments_order_summary_label), this);
+ mOrderSummarySection = new LineItemBreakdownSection(activity,
+ activity.getString(R.string.payments_order_summary_label), this,
+ activity.getString(R.string.payments_updated_label));
mShippingSummarySection = new ExtraTextsSection(
activity, activity.getString(mShippingStrings.getSummaryLabel()), this);
mShippingAddressSection = new OptionSection(

Powered by Google App Engine
This is Rietveld 408576698