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

Unified Diff: components/payments/payment_app.mojom

Issue 2586203003: PaymentApp: Remove scope_url parameter from Get/SetManifest methods. (Closed)
Patch Set: Created 4 years 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: components/payments/payment_app.mojom
diff --git a/components/payments/payment_app.mojom b/components/payments/payment_app.mojom
index 6959aa7ac84576c38ebb222f42412de45b5b1ebd..a12d53bd3af3dbb9ec9690232ca9fe38aa8822ba 100644
--- a/components/payments/payment_app.mojom
+++ b/components/payments/payment_app.mojom
@@ -25,8 +25,9 @@ struct PaymentAppManifest {
};
interface PaymentAppManager {
- SetManifest(string service_worker_scope, PaymentAppManifest payment_app_manifest)
+ Init(string service_worker_scope);
+ SetManifest(PaymentAppManifest payment_app_manifest)
=> (PaymentAppManifestError error);
- GetManifest(string service_worker_scope)
+ GetManifest()
=> (PaymentAppManifest payment_app_manifest, PaymentAppManifestError error);
};

Powered by Google App Engine
This is Rietveld 408576698