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

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

Issue 2850503002: Enable "interledger" non-URI payment method. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/payments/AndroidPaymentAppFinder.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/AndroidPaymentAppFinder.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/AndroidPaymentAppFinder.java
index 7a9000f3164c463193fae6b0dc8feb39e73aa5ff..9af32e97d5381653a3892472612ac4e48dbafd20 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/payments/AndroidPaymentAppFinder.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/AndroidPaymentAppFinder.java
@@ -114,7 +114,10 @@ public class AndroidPaymentAppFinder implements ManifestVerifyCallback {
// For non-URI payment method names, only names published by W3C should be supported.
Set<String> supportedNonUriPaymentMethods = new HashSet<>();
+ // https://w3c.github.io/webpayments-methods-card/
supportedNonUriPaymentMethods.add(BASIC_CARD_PAYMENT_METHOD);
gogerald1 2017/04/27 14:35:33 use "basic-card" here as well and remove BASIC_CAR
please use gerrit instead 2017/04/27 14:41:24 Done.
+ // https://w3c.github.io/webpayments/proposals/interledger-payment-method.html
+ supportedNonUriPaymentMethods.add("interledger");
mNonUriPaymentMethods = new HashSet<>();
mUriPaymentMethods = new HashSet<>();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698