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

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

Issue 2516913002: [Merge M-56] [Payments] Add text when shopping card total is updated. (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/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 cb4aa4ed2f39ae8173d8993008c79d91a361ec72..afbe29899504931d75228621850b9a6ccff8c530 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
@@ -533,8 +533,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