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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentInstrument.idl

Issue 2925063003: [Payments] Implement payment instrument icons (Closed)
Patch Set: fix comment lines Created 3 years, 6 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
Index: third_party/WebKit/Source/modules/payments/PaymentInstrument.idl
diff --git a/third_party/WebKit/Source/modules/payments/PaymentInstrument.idl b/third_party/WebKit/Source/modules/payments/PaymentInstrument.idl
index 9f57261ff7a7bae09ae34d8456906aee523925fd..ad09a3376e4c771e181d1afd735bd323075fde3f 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentInstrument.idl
+++ b/third_party/WebKit/Source/modules/payments/PaymentInstrument.idl
@@ -2,15 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// https://w3c.github.io/webpayments-payment-apps-api/#payment-instrument
+// https://w3c.github.io/payment-handler/#paymentinstrument-dictionary
dictionary PaymentInstrument {
required DOMString name;
- // TODO(zino): PaymentInstrument should have icons attribute.
- // The spec[1] defines it as a sequence of ImageObject but its definition
- // is not clear yet.
- // Please see: https://github.com/w3c/webpayments-payment-apps-api/issues/69
- // sequence<ImageObject> icons;
+ sequence<ImageObject> icons;
sequence<DOMString> enabledMethods;
object capabilities;
};

Powered by Google App Engine
This is Rietveld 408576698