Index: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h |
diff --git a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h |
index 1b4d19afb4d1b3caa8ef46f2570d2465187aaa34..793c5cd8d4b90179ff672eed5bf456873c7b46fb 100644 |
--- a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h |
+++ b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h |
@@ -31,6 +31,7 @@ public: |
static PassRefPtrWillBeRawPtr<FetchEvent> create(const AtomicString& type, const FetchEventInit&, RespondWithObserver*); |
Request* request() const; |
+ String clientId() const; |
bool isReload() const; |
void respondWith(ScriptState*, ScriptPromise, ExceptionState&); |
@@ -46,6 +47,7 @@ protected: |
private: |
PersistentWillBeMember<RespondWithObserver> m_observer; |
PersistentWillBeMember<Request> m_request; |
+ String m_clientId; |
bool m_isReload; |
}; |