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

Unified Diff: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h

Issue 2705293010: PaymentApp: Implement respondWith() in PaymentRequestEvent. (blink side) (Closed)
Patch Set: PaymentApp: Implement respondWith() in PaymentRequestEvent. (blink side) Created 3 years, 9 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/web/ServiceWorkerGlobalScopeClientImpl.h
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h
index 93ca3a215a47ec253fcd48af0b73fd5739c29bf7..84de40598d940940375e5a9647c7ab3f622bba1f 100644
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h
@@ -38,6 +38,7 @@
namespace blink {
+struct WebPaymentAppResponse;
class WebServiceWorkerContextClient;
class WebServiceWorkerResponse;
class WebURL;
@@ -72,6 +73,9 @@ class ServiceWorkerGlobalScopeClientImpl final
void respondToFetchEvent(int responseID,
const WebServiceWorkerResponse&,
double eventDispatchTime) override;
+ void respondToPaymentRequestEvent(int responseID,
+ const WebPaymentAppResponse&,
+ double eventDispatchTime) override;
void didHandleFetchEvent(int fetchEventID,
WebServiceWorkerEventResult,
double eventDispatchTime) override;

Powered by Google App Engine
This is Rietveld 408576698