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

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

Issue 2507223002: Implement IsReadyToPay handling (Closed)
Patch Set: Use aidl Created 4 years, 1 month 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 bc76fa80a8248014a16cd5b178cc37d3037fbb76..49ba2b5aa5cfb688dd3af6e2d65e408e06ff96dc 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
@@ -36,9 +36,11 @@ public interface PaymentApp {
* @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 origin The origin of this merchant.
* @param callback The object that will receive the list of instruments.
*/
- void getInstruments(Map<String, JSONObject> methodData, InstrumentsCallback callback);
+ void getInstruments(Map<String, JSONObject> methodData,
+ String origin, 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