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

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

Issue 2746783002: [ServiceWorker] Mojofy InstallEvent of Service Worker (Closed)
Patch Set: Just delete a useless line Created 3 years, 8 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/InstallEvent.h
diff --git a/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.h b/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.h
index e2fb165655ac6a1a5dbe7bdd949762914746adb5..360fdb6b13fef57f435d3e9c42a72126755158ce 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.h
@@ -20,6 +20,7 @@ class MODULES_EXPORT InstallEvent : public ExtendableEvent {
const ExtendableEventInit&);
static InstallEvent* Create(const AtomicString& type,
const ExtendableEventInit&,
+ int event_id,
WaitUntilObserver*);
~InstallEvent() override;
@@ -34,7 +35,9 @@ class MODULES_EXPORT InstallEvent : public ExtendableEvent {
InstallEvent(const AtomicString& type, const ExtendableEventInit&);
InstallEvent(const AtomicString& type,
const ExtendableEventInit&,
+ int event_id,
WaitUntilObserver*);
+ const int event_id_;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698