| Index: Source/core/events/UIEvent.cpp
|
| diff --git a/Source/core/events/UIEvent.cpp b/Source/core/events/UIEvent.cpp
|
| index 76ccfc84c77ec521aa8ac25ea828c6e199e4f513..f9e26558c627717718112b851094a23c5f56a891 100644
|
| --- a/Source/core/events/UIEvent.cpp
|
| +++ b/Source/core/events/UIEvent.cpp
|
| @@ -35,7 +35,6 @@ UIEventInit::UIEventInit()
|
| UIEvent::UIEvent()
|
| : m_detail(0)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, PassRefPtrWillBeRawPtr<AbstractView> viewArg, int detailArg)
|
| @@ -43,7 +42,6 @@ UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelab
|
| , m_view(viewArg)
|
| , m_detail(detailArg)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| UIEvent::UIEvent(const AtomicString& eventType, const UIEventInit& initializer)
|
| @@ -51,7 +49,6 @@ UIEvent::UIEvent(const AtomicString& eventType, const UIEventInit& initializer)
|
| , m_view(initializer.view)
|
| , m_detail(initializer.detail)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| UIEvent::~UIEvent()
|
|
|