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

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

Issue 2770193003: Implement request id in PaymentDetailsInit (Closed)
Patch Set: s/requestId/id Created 3 years, 9 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/payments/PaymentRequestImpl.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java
index ca53cbcf63dd9f831990019556b106b7a20b6b33..14d89ae9f85dc173f714346947d15638b80efea7 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java
@@ -295,6 +295,7 @@ public class PaymentRequestImpl
*/
private SectionInformation mUiShippingOptions;
+ private String mId;
please use gerrit instead 2017/03/27 16:22:36 Make this final and move it to the block of final
rwlbuis 2017/03/27 20:45:29 I dont think I can make it final.
private Map<String, PaymentMethodData> mMethodData;
private boolean mRequestShipping;
private boolean mRequestPayerName;
@@ -759,6 +760,10 @@ public class PaymentRequestImpl
updateInstrumentModifiedTotals();
+ if (details.id != null) {
please use gerrit instead 2017/03/27 16:22:36 "id" can be set only in init(). It should not be s
rwlbuis 2017/03/27 20:45:29 Done.
+ mId = details.id;
+ }
+
return true;
}
@@ -1167,7 +1172,7 @@ public class PaymentRequestImpl
PaymentOption selectedContact = mContactSection != null ? mContactSection.getSelectedItem()
: null;
mPaymentResponseHelper = new PaymentResponseHelper(
- selectedShippingAddress, selectedShippingOption, selectedContact, this);
+ mId, selectedShippingAddress, selectedShippingOption, selectedContact, this);
please use gerrit instead 2017/03/27 16:22:36 No need to pass `mId` back into the renderer. The
rwlbuis 2017/03/27 20:45:29 Done.
// Create maps that are subsets of mMethodData and mModifiers, that contain
// the payment methods supported by the selected payment instrument. If the
@@ -1185,7 +1190,7 @@ public class PaymentRequestImpl
}
}
- instrument.invokePaymentApp(mMerchantName, mSchemelessOriginForPaymentApp,
+ instrument.invokePaymentApp(mId, mMerchantName, mSchemelessOriginForPaymentApp,
mSchemelessIFrameOriginForPaymentApp, mCertificateChain,
Collections.unmodifiableMap(methodData), mRawTotal, mRawLineItems,
Collections.unmodifiableMap(modifiers), this);

Powered by Google App Engine
This is Rietveld 408576698