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

Unified Diff: third_party/WebKit/Source/core/events/AnimationPlayerEvent.h

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
Index: third_party/WebKit/Source/core/events/AnimationPlayerEvent.h
diff --git a/third_party/WebKit/Source/core/events/AnimationPlayerEvent.h b/third_party/WebKit/Source/core/events/AnimationPlayerEvent.h
index f5d2287998f082201c867631545e79363182b325..01fa2b2973fc53c7793108bfb4362eeac7b6a7e5 100644
--- a/third_party/WebKit/Source/core/events/AnimationPlayerEvent.h
+++ b/third_party/WebKit/Source/core/events/AnimationPlayerEvent.h
@@ -13,10 +13,6 @@ namespace blink {
class AnimationPlayerEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static AnimationPlayerEvent* create()
- {
- return new AnimationPlayerEvent;
- }
static AnimationPlayerEvent* create(const AtomicString& type, double currentTime, double timelineTime)
{
return new AnimationPlayerEvent(type, currentTime, timelineTime);
@@ -37,7 +33,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- AnimationPlayerEvent();
AnimationPlayerEvent(const AtomicString& type, double currentTime, double timelineTime);
AnimationPlayerEvent(const AtomicString&, const AnimationPlayerEventInit&);

Powered by Google App Engine
This is Rietveld 408576698