| Index: Source/modules/speech/SpeechRecognitionEvent.cpp
|
| diff --git a/Source/modules/speech/SpeechRecognitionEvent.cpp b/Source/modules/speech/SpeechRecognitionEvent.cpp
|
| index 713c663c4f3ac3a957575815cee4eac7c369f56b..2da1ce00186c3608f077301baa9848caef3fd53e 100644
|
| --- a/Source/modules/speech/SpeechRecognitionEvent.cpp
|
| +++ b/Source/modules/speech/SpeechRecognitionEvent.cpp
|
| @@ -68,7 +68,6 @@ const AtomicString& SpeechRecognitionEvent::interfaceName() const
|
| SpeechRecognitionEvent::SpeechRecognitionEvent()
|
| : m_resultIndex(0)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, const SpeechRecognitionEventInit& initializer)
|
| @@ -76,7 +75,6 @@ SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, co
|
| , m_resultIndex(initializer.resultIndex)
|
| , m_results(initializer.results)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIndex, SpeechRecognitionResultList* results)
|
| @@ -84,7 +82,6 @@ SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, un
|
| , m_resultIndex(resultIndex)
|
| , m_results(results)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| SpeechRecognitionEvent::~SpeechRecognitionEvent()
|
|
|