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

Unified Diff: components/payments/payment_app.mojom

Issue 2506093002: PaymentApp: Implement PaymentAppManager.getManifest(). (Closed)
Patch Set: PaymentApp: Implement PaymentAppManager.getManifest(). 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
« no previous file with comments | « no previous file | content/browser/payments/payment_app_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/payments/payment_app.mojom
diff --git a/components/payments/payment_app.mojom b/components/payments/payment_app.mojom
index 59b92a1a99182a20f6b81eeceb6bef52db14d0eb..d4f16ee7fd290377ed40d4520d95f9e3db046a70 100644
--- a/components/payments/payment_app.mojom
+++ b/components/payments/payment_app.mojom
@@ -8,7 +8,7 @@ enum PaymentAppManifestError {
NONE,
NOT_IMPLEMENTED,
NO_ACTIVE_WORKER,
- STORE_MANIFEST_FAILED,
+ MANIFEST_STORAGE_OPERATION_FAILED,
};
struct PaymentAppOption {
@@ -27,4 +27,6 @@ struct PaymentAppManifest {
interface PaymentAppManager {
SetManifest(string service_worker_scope, PaymentAppManifest payment_app_manifest)
=> (PaymentAppManifestError error);
+ GetManifest(string service_worker_scope)
+ => (PaymentAppManifest payment_app_manifest, PaymentAppManifestError error);
};
« no previous file with comments | « no previous file | content/browser/payments/payment_app_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698