| Index: Source/WebCore/page/SpeechInputEvent.cpp
|
| diff --git a/Source/WebCore/page/SpeechInputEvent.cpp b/Source/WebCore/page/SpeechInputEvent.cpp
|
| index 23e34bf9673f86c2788e2f20e7ef0a7a5befe16d..bfa38149c8220802e4bfad4db49ec72596e97888 100644
|
| --- a/Source/WebCore/page/SpeechInputEvent.cpp
|
| +++ b/Source/WebCore/page/SpeechInputEvent.cpp
|
| @@ -50,12 +50,14 @@ PassRefPtr<SpeechInputEvent> SpeechInputEvent::create(const AtomicString& eventT
|
|
|
| SpeechInputEvent::SpeechInputEvent()
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
|
|
| SpeechInputEvent::SpeechInputEvent(const AtomicString& eventType, const SpeechInputResultArray& results)
|
| : Event(eventType, true, false) // Can bubble, not cancelable
|
| , m_results(SpeechInputResultList::create(results))
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
|
|
| SpeechInputEvent::~SpeechInputEvent()
|
|
|