Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / gamepad / GamepadEvent.cpp
index 5cd3a08..6fd2dff 100644 (file)
@@ -13,21 +13,18 @@ GamepadEventInit::GamepadEventInit()
 
 GamepadEvent::GamepadEvent()
 {
-    ScriptWrappable::init(this);
 }
 
 GamepadEvent::GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad)
     : Event(type, canBubble, cancelable)
     , m_gamepad(gamepad)
 {
-    ScriptWrappable::init(this);
 }
 
 GamepadEvent::GamepadEvent(const AtomicString& type, const GamepadEventInit& initializer)
     : Event(type, initializer)
     , m_gamepad(initializer.gamepad)
 {
-    ScriptWrappable::init(this);
 }
 
 GamepadEvent::~GamepadEvent()