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

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

Issue 2523583002: test
Patch Set: test 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/web/ServiceWorkerGlobalScopeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
index 0b58bf64310124eaf1c97a6b6039c4540432d357..03cded419baeb68446078ea40606b01a46d0e4a4 100644
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.cpp
@@ -147,6 +147,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