Index: Source/modules/device_light/DeviceLightEvent.cpp |
diff --git a/Source/modules/device_light/DeviceLightEvent.cpp b/Source/modules/device_light/DeviceLightEvent.cpp |
index 71a2fc7f2b41ae97589d977049e1718f2b755c3e..994629388b6a488d7451ec8564dfd62928a045a4 100644 |
--- a/Source/modules/device_light/DeviceLightEvent.cpp |
+++ b/Source/modules/device_light/DeviceLightEvent.cpp |
@@ -14,21 +14,18 @@ DeviceLightEvent::~DeviceLightEvent() |
DeviceLightEvent::DeviceLightEvent() |
: m_value(std::numeric_limits<double>::infinity()) |
{ |
- ScriptWrappable::init(this); |
} |
DeviceLightEvent::DeviceLightEvent(const AtomicString& eventType, double value) |
: Event(eventType, true, false) // The DeviceLightEvent bubbles but is not cancelable. |
, m_value(value) |
{ |
- ScriptWrappable::init(this); |
} |
DeviceLightEvent::DeviceLightEvent(const AtomicString& eventType, const DeviceLightEventInit& initializer) |
: Event(eventType, initializer) |
, m_value(initializer.value) |
{ |
- ScriptWrappable::init(this); |
} |
const AtomicString& DeviceLightEvent::interfaceName() const |