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

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

Issue 2034663002: ServiceWorker: Keep the worker alive until FetchEvent.waitUntil settles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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 52d6d4a73b574cb9dcc9aac00f3e86afb6011310..91e242ef001409c4a8230cd70fc9142e1d285f9f 100644
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeClientImpl.h
@@ -58,8 +58,9 @@ public:
void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult) override;
void didHandleExtendableMessageEvent(int eventID, WebServiceWorkerEventResult) override;
- void didHandleFetchEvent(int fetchEventID) override;
- void didHandleFetchEvent(int fetchEventID, const WebServiceWorkerResponse&) override;
+ void respondToFetchEvent(int responseID) override;
+ void respondToFetchEvent(int responseID, const WebServiceWorkerResponse&) override;
+ void didHandleFetchEvent(int eventFinishID, WebServiceWorkerEventResult) override;
void didHandleInstallEvent(int installEventID, WebServiceWorkerEventResult) override;
void didHandleNotificationClickEvent(int eventID, WebServiceWorkerEventResult) override;
void didHandleNotificationCloseEvent(int eventID, WebServiceWorkerEventResult) override;

Powered by Google App Engine
This is Rietveld 408576698