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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentAppServiceWorkerRegistration.h

Issue 2476343002: PaymentApp: Initial implementation for PaymentAppManager.setManifest(). (Closed)
Patch Set: fix lint error 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
Index: third_party/WebKit/Source/modules/payments/PaymentAppServiceWorkerRegistration.h
diff --git a/third_party/WebKit/Source/modules/payments/PaymentAppServiceWorkerRegistration.h b/third_party/WebKit/Source/modules/payments/PaymentAppServiceWorkerRegistration.h
index 7bbb463a752476859fbd421ee1e32b456829ec84..3e2b70b160423c0549d724b16f1e62b4a3e4d9db 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentAppServiceWorkerRegistration.h
+++ b/third_party/WebKit/Source/modules/payments/PaymentAppServiceWorkerRegistration.h
@@ -11,6 +11,7 @@
namespace blink {
class PaymentAppManager;
+class ScriptState;
class ServiceWorkerRegistration;
class PaymentAppServiceWorkerRegistration final
@@ -23,8 +24,9 @@ class PaymentAppServiceWorkerRegistration final
virtual ~PaymentAppServiceWorkerRegistration();
static PaymentAppServiceWorkerRegistration& from(ServiceWorkerRegistration&);
- static PaymentAppManager* paymentAppManager(ServiceWorkerRegistration&);
- PaymentAppManager* paymentAppManager();
+ static PaymentAppManager* paymentAppManager(ScriptState*,
+ ServiceWorkerRegistration&);
+ PaymentAppManager* paymentAppManager(ScriptState*);
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698