| Index: Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp
|
| diff --git a/Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp b/Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp
|
| index d2d6be6e8afbd284ff2c3c459be9c2a0d3e2319c..88184ac0d7e05caa9b6b56715fb46c69b46840b7 100644
|
| --- a/Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp
|
| +++ b/Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp
|
| @@ -77,6 +77,7 @@ 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, PassRefPtr<SpeechRecognitionResultList> results)
|
| @@ -84,10 +85,12 @@ SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, un
|
| , m_resultIndex(resultIndex)
|
| , m_results(results)
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
|
|
| SpeechRecognitionEvent::~SpeechRecognitionEvent()
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
|
|
| } // namespace WebCore
|
|
|