Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / events / WebKitAnimationEvent.cpp
index 68064f3..1a9f878 100644 (file)
@@ -26,7 +26,7 @@
 #include "config.h"
 #include "core/events/WebKitAnimationEvent.h"
 
-namespace WebCore {
+namespace blink {
 
 WebKitAnimationEventInit::WebKitAnimationEventInit()
     : animationName()
@@ -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()
@@ -80,4 +77,4 @@ void WebKitAnimationEvent::trace(Visitor* visitor)
     Event::trace(visitor);
 }
 
-} // namespace WebCore
+} // namespace blink