Index: Source/core/events/ErrorEvent.cpp |
diff --git a/Source/core/events/ErrorEvent.cpp b/Source/core/events/ErrorEvent.cpp |
index 7d6c166c54032fa49f0c4750103b0c85fd104507..d83ce299eecef908a9dfe5e0da2360c84152d186 100644 |
--- a/Source/core/events/ErrorEvent.cpp |
+++ b/Source/core/events/ErrorEvent.cpp |
@@ -51,7 +51,6 @@ ErrorEvent::ErrorEvent() |
, m_columnNumber(0) |
, m_world(DOMWrapperWorld::current(v8::Isolate::GetCurrent())) |
{ |
- ScriptWrappable::init(this); |
} |
ErrorEvent::ErrorEvent(const AtomicString& type, const ErrorEventInit& initializer) |
@@ -62,7 +61,6 @@ ErrorEvent::ErrorEvent(const AtomicString& type, const ErrorEventInit& initializ |
, m_columnNumber(initializer.colno) |
, m_world(DOMWrapperWorld::current(v8::Isolate::GetCurrent())) |
{ |
- ScriptWrappable::init(this); |
} |
ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world) |
@@ -73,7 +71,6 @@ ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned l |
, m_columnNumber(columnNumber) |
, m_world(world) |
{ |
- ScriptWrappable::init(this); |
} |
void ErrorEvent::setUnsanitizedMessage(const String& message) |