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

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

Issue 2567673002: Factor getCertificateChain out of ConnectionPopupInfo (Closed)
Patch Set: Created 4 years 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/AutofillPaymentInstrument.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java
index cb71c8ab5fa8a6b39707656799df99da4e401419..f80775c23b9bdb0ba23b3a360ddb529de1770919 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java
@@ -75,8 +75,8 @@ public class AutofillPaymentInstrument extends PaymentInstrument
@Override
public void invokePaymentApp(String unusedMerchantName, String unusedOrigin,
- PaymentItem unusedTotal, List<PaymentItem> unusedCart,
- Map<String, PaymentMethodData> unusedMethodData,
+ byte[][] unusedCertificateChain, PaymentItem unusedTotal,
+ List<PaymentItem> unusedCart, Map<String, PaymentMethodData> unusedMethodData,
InstrumentDetailsCallback callback) {
// The billing address should never be null for a credit card at this point.
assert mBillingAddress != null;

Powered by Google App Engine
This is Rietveld 408576698