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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h

Issue 2416863002: Use fetch_event_id (fetchEventID in blink) for FetchEvent (Closed)
Patch Set: Created 4 years, 2 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/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
index 8bbde4684a91f67db2acb9f4453bb8a3cfe43abc..524133ac757f2e09e42b575b47d69708b2dc79c3 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
@@ -82,12 +82,12 @@ class MODULES_EXPORT ServiceWorkerGlobalScopeClient
double eventDispatchTime) = 0;
// Calling respondToFetchEvent without response means no response was
// provided by the service worker in the fetch events, so fallback to native.
- virtual void respondToFetchEvent(int responseID,
+ virtual void respondToFetchEvent(int fetchEventID,
double eventDispatchTime) = 0;
- virtual void respondToFetchEvent(int responseID,
+ virtual void respondToFetchEvent(int fetchEventID,
const WebServiceWorkerResponse&,
double eventDispatchTime) = 0;
- virtual void didHandleFetchEvent(int eventFinishID,
+ virtual void didHandleFetchEvent(int fetchEventID,
WebServiceWorkerEventResult,
double eventDispatchTime) = 0;
virtual void didHandleInstallEvent(int installEventID,

Powered by Google App Engine
This is Rietveld 408576698