| 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&);
|
|
|
|
|