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

Unified Diff: third_party/WebKit/Source/modules/background_fetch/BackgroundFetchClickEvent.cpp

Issue 2748213003: Service Worker event dispatcher for Background Fetch (Closed)
Patch Set: uma fix 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/modules/background_fetch/BackgroundFetchClickEvent.cpp
diff --git a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchClickEvent.cpp b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchClickEvent.cpp
index 9c337b0198928ab188823793e814ec1cff533723..584b009e7e08ac12562961c3c3a403db1982dd3b 100644
--- a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchClickEvent.cpp
+++ b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchClickEvent.cpp
@@ -11,8 +11,9 @@ namespace blink {
BackgroundFetchClickEvent::BackgroundFetchClickEvent(
const AtomicString& type,
- const BackgroundFetchClickEventInit& init)
- : BackgroundFetchEvent(type, init), m_state(init.state()) {}
+ const BackgroundFetchClickEventInit& init,
+ WaitUntilObserver* observer)
+ : BackgroundFetchEvent(type, init, observer), m_state(init.state()) {}
BackgroundFetchClickEvent::~BackgroundFetchClickEvent() = default;

Powered by Google App Engine
This is Rietveld 408576698