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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/RespondWithObserver.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/RespondWithObserver.h
diff --git a/third_party/WebKit/Source/modules/serviceworkers/RespondWithObserver.h b/third_party/WebKit/Source/modules/serviceworkers/RespondWithObserver.h
index 260a9dee6a0b074203c5e7e56f7879d62e431a0b..087d06b42cd5af70093fad1642ec7778286340fb 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/RespondWithObserver.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/RespondWithObserver.h
@@ -32,7 +32,7 @@ class MODULES_EXPORT RespondWithObserver
virtual ~RespondWithObserver();
static RespondWithObserver* create(ExecutionContext*,
- int eventID,
+ int fetchEventID,
const KURL& requestURL,
WebURLRequest::FetchRequestMode,
WebURLRequest::FrameType,
@@ -55,7 +55,7 @@ class MODULES_EXPORT RespondWithObserver
protected:
RespondWithObserver(ExecutionContext*,
- int eventID,
+ int fetchEventID,
const KURL& requestURL,
WebURLRequest::FetchRequestMode,
WebURLRequest::FrameType,
@@ -65,7 +65,7 @@ class MODULES_EXPORT RespondWithObserver
private:
class ThenFunction;
- int m_eventID;
+ int m_fetchEventID;
KURL m_requestURL;
WebURLRequest::FetchRequestMode m_requestMode;
WebURLRequest::FrameType m_frameType;

Powered by Google App Engine
This is Rietveld 408576698