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

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

Issue 2216593002: Drop document.createEvent support for things still behind a flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@createEvent
Patch Set: fix LayoutTests Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/Source/modules/serviceworkers/InstallEvent.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
diff --git a/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp b/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
index 7c98811bdadf629305c66c149139346190712261..30f6d7a39edea1d140c6f5e1253e31f0c4355cbe 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
@@ -10,11 +10,6 @@
namespace blink {
-InstallEvent* InstallEvent::create()
-{
- return new InstallEvent();
-}
-
InstallEvent* InstallEvent::create(const AtomicString& type, const ExtendableEventInit& eventInit)
{
return new InstallEvent(type, eventInit);
@@ -95,10 +90,6 @@ const AtomicString& InstallEvent::interfaceName() const
return EventNames::InstallEvent;
}
-InstallEvent::InstallEvent()
-{
-}
-
InstallEvent::InstallEvent(const AtomicString& type, const ExtendableEventInit& initializer)
: ExtendableEvent(type, initializer)
{
« no previous file with comments | « third_party/WebKit/Source/modules/serviceworkers/InstallEvent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698