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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentApp.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/PaymentApp.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentApp.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentApp.java
index 477e5a13bd0638966fda5af07f026b9294d43669..8121974539100eac4be6d5f26bcb977384d6100d 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentApp.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentApp.java
@@ -33,12 +33,14 @@ public interface PaymentApp {
* cards for the current profile. Can return null or empty list, e.g., if user has no locally
* stored credit cards.
*
- * @param methodData The map from methods to method specific data. The data contains such
- * information as whether the app should be invoked in test or production
- * mode, merchant identifier, or a public key.
- * @param callback The object that will receive the list of instruments.
+ * @param methodData The map from methods to method specific data. The data contains such
+ * information as whether the app should be invoked in test or
+ * production mode, merchant identifier, or a public key.
+ * @param certificateChain The site certificate chain of the merchant.
+ * @param callback The object that will receive the list of instruments.
*/
- void getInstruments(Map<String, PaymentMethodData> methodData, InstrumentsCallback callback);
+ void getInstruments(Map<String, PaymentMethodData> methodData,
+ byte[][] certificateChain, InstrumentsCallback callback);
/**
* Returns a list of all payment method names that this app supports. For example, ["visa",

Powered by Google App Engine
This is Rietveld 408576698