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

Unified Diff: third_party/WebKit/Source/modules/payments/ImageObject.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/ImageObject.idl
diff --git a/third_party/WebKit/Source/modules/payments/ImageObject.idl b/third_party/WebKit/Source/modules/payments/ImageObject.idl
new file mode 100644
index 0000000000000000000000000000000000000000..ac8f460c1d3cb113ccf190286fa5d34843510bed
--- /dev/null
+++ b/third_party/WebKit/Source/modules/payments/ImageObject.idl
@@ -0,0 +1,16 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// https://github.com/w3c/payment-handler/pull/174/files/6e6768c423e24719cb0e592cd98614f052e52a78
+
+dictionary ImageObject {
+ // Note that the src could be relative path to the service worker
+ // scope.
+ required USVString src;
+
+ // TODO(gogerald): Below two attributes have not been used for now.
+ // Enable them when necessary.
+ // DOMString sizes;
+ // DOMString type;
+};

Powered by Google App Engine
This is Rietveld 408576698