| Index: Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| diff --git a/Source/modules/speech/SpeechSynthesisUtterance.cpp b/Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| index 2d98c03aec919979601b32fbc9bcc91a17941366..144342edf72aae9c83d17627057eb33d7fe555e7 100644
|
| --- a/Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| +++ b/Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| @@ -43,7 +43,6 @@ SpeechSynthesisUtterance::SpeechSynthesisUtterance(ExecutionContext* context, co
|
|
|
| SpeechSynthesisUtterance::~SpeechSynthesisUtterance()
|
| {
|
| - m_platformUtterance->setClient(0);
|
| }
|
|
|
| ExecutionContext* SpeechSynthesisUtterance::executionContext() const
|
| @@ -73,6 +72,7 @@ void SpeechSynthesisUtterance::setVoice(SpeechSynthesisVoice* voice)
|
|
|
| void SpeechSynthesisUtterance::trace(Visitor* visitor)
|
| {
|
| + visitor->trace(m_platformUtterance);
|
| visitor->trace(m_voice);
|
| EventTargetWithInlineData::trace(visitor);
|
| }
|
|
|