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

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

Issue 2767093004: Implement the BackgroundFetch{Fail,ed} Service Worker events (Closed)
Patch Set: add missing uma Created 3 years, 9 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/ServiceWorkerGlobalScopeProxy.h
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h
index f6c225132f967660ad9320db30129d3016ae890e..44e3be60f517323381bbec38dcd97bda63e00620 100644
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h
@@ -85,6 +85,14 @@ class ServiceWorkerGlobalScopeProxy final
void dispatchBackgroundFetchClickEvent(int,
const WebString& tag,
BackgroundFetchState) override;
+ void dispatchBackgroundFetchFailEvent(
+ int,
+ const WebString& tag,
+ const WebVector<WebBackgroundFetchSettledFetch>& fetches) override;
+ void dispatchBackgroundFetchedEvent(
+ int,
+ const WebString& tag,
+ const WebVector<WebBackgroundFetchSettledFetch>& fetches) override;
void dispatchExtendableMessageEvent(
int eventID,
const WebString& message,

Powered by Google App Engine
This is Rietveld 408576698