| 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",
|
|
|