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

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

Issue 2528683002: PaymentApp: Blink side of payment request event dispatching in service worker. (Closed)
Patch Set: PaymentApp: Blink side of payment request event dispatching in service worker. 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: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
index 0821c9124f65fc787ecf95471389b6a8bbdff40e..afd5b5dfcd3ccf52c12ccff9bd6e34c231dfdddb 100644
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
@@ -148,6 +148,14 @@ void ServiceWorkerGlobalScopeClientImpl::didHandleSyncEvent(
m_client.didHandleSyncEvent(syncEventID, result, eventDispatchTime);
}
+void ServiceWorkerGlobalScopeClientImpl::didHandlePaymentRequestEvent(
+ int paymentRequestEventID,
+ WebServiceWorkerEventResult result,
+ double eventDispatchTime) {
+ m_client.didHandlePaymentRequestEvent(paymentRequestEventID, result,
+ eventDispatchTime);
+}
+
void ServiceWorkerGlobalScopeClientImpl::postMessageToClient(
const WebString& clientUUID,
const WebString& message,

Powered by Google App Engine
This is Rietveld 408576698