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

Unified Diff: components/payments/mojom/payment_app.mojom

Issue 2850203002: PaymentHandler: Implement PaymentInstruments.keys(). (Closed)
Patch Set: PaymentHandler: Implement PaymentInstruments.Keys(). 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 | content/browser/payments/payment_app.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/payments/mojom/payment_app.mojom
diff --git a/components/payments/mojom/payment_app.mojom b/components/payments/mojom/payment_app.mojom
index 702e287629cea798777b4dffb343ea768f180998..1b9ee5c7b80a416501556f5ad6d9872f9f897fd1 100644
--- a/components/payments/mojom/payment_app.mojom
+++ b/components/payments/mojom/payment_app.mojom
@@ -50,12 +50,14 @@ interface PaymentManager {
=> (PaymentAppManifest payment_app_manifest, PaymentAppManifestError error);
DeletePaymentInstrument(string instrument_key)
=> (PaymentHandlerStatus status);
- SetPaymentInstrument(string instrument_key, PaymentInstrument instrument)
- => (PaymentHandlerStatus status);
- HasPaymentInstrument(string instrument_key)
- => (PaymentHandlerStatus status);
GetPaymentInstrument(string instrument_key)
=> (PaymentInstrument instrument, PaymentHandlerStatus status);
+ KeysOfPaymentInstruments()
+ => (array<string> keys, PaymentHandlerStatus status);
+ HasPaymentInstrument(string instrument_key)
+ => (PaymentHandlerStatus status);
+ SetPaymentInstrument(string instrument_key, PaymentInstrument instrument)
+ => (PaymentHandlerStatus status);
};
struct PaymentAppRequest {
« no previous file with comments | « no previous file | content/browser/payments/payment_app.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698