X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fevents%2FWebKitAnimationEvent.cpp;h=1a9f878a5f69e518a7c864fd48baff4d874ab1fd;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=77a9a97ba3fc90d5746e45485f73f1486efcd0dc;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/events/WebKitAnimationEvent.cpp b/src/third_party/WebKit/Source/core/events/WebKitAnimationEvent.cpp index 77a9a97..1a9f878 100644 --- a/src/third_party/WebKit/Source/core/events/WebKitAnimationEvent.cpp +++ b/src/third_party/WebKit/Source/core/events/WebKitAnimationEvent.cpp @@ -37,7 +37,6 @@ WebKitAnimationEventInit::WebKitAnimationEventInit() WebKitAnimationEvent::WebKitAnimationEvent() : m_elapsedTime(0.0) { - ScriptWrappable::init(this); } WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const WebKitAnimationEventInit& initializer) @@ -45,7 +44,6 @@ WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const WebKi , m_animationName(initializer.animationName) , m_elapsedTime(initializer.elapsedTime) { - ScriptWrappable::init(this); } WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime) @@ -53,7 +51,6 @@ WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const Strin , m_animationName(animationName) , m_elapsedTime(elapsedTime) { - ScriptWrappable::init(this); } WebKitAnimationEvent::~WebKitAnimationEvent()