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

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

Issue 2244583002: [payments] address label should located at left and name label should located at right in shipping s (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [payments] address label should located at left and name label should located at right in shipping … Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3b2e95144dbd81781dd1eeecc1d71f6f76d9dfe3..815f341927d607a79eb119c6d6cc6b9da72bfd9a 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
@@ -374,8 +374,8 @@ public class PaymentRequestUI implements DialogInterface.OnDismissListener, View
updateSection(TYPE_SHIPPING_ADDRESSES, result.getShippingAddresses());
updateSection(TYPE_SHIPPING_OPTIONS, result.getShippingOptions());
- String selectedShippingAddress = result.getSelectedShippingAddressLabel();
- String selectedShippingName = result.getSelectedShippingAddressSublabel();
+ String selectedShippingName = result.getSelectedShippingAddressLabel();
+ String selectedShippingAddress = result.getSelectedShippingAddressSublabel();
String selectedShippingOptionLabel = result.getSelectedShippingOptionLabel();
if (selectedShippingAddress == null || selectedShippingOptionLabel == null) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698