| Index: Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp
|
| diff --git a/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp b/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp
|
| index 093dd409a3d74907ebb39388b3941fae1fb402d9..b1620c26c93f595b8933e7efc54144d0edfa67aa 100644
|
| --- a/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp
|
| +++ b/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp
|
| @@ -85,7 +85,7 @@ void PlatformSpeechSynthesizerMock::speak(PassRefPtr<PlatformSpeechSynthesisUtte
|
| client()->boundaryEventOccurred(m_utterance, SpeechSentenceBoundary, m_utterance->text().length());
|
|
|
| // Give the fake speech job some time so that pause and other functions have time to be called.
|
| - m_speakingFinishedTimer.startOneShot(.1);
|
| + m_speakingFinishedTimer.startOneShot(.1, FROM_HERE);
|
| }
|
|
|
| void PlatformSpeechSynthesizerMock::cancel()
|
| @@ -94,7 +94,7 @@ void PlatformSpeechSynthesizerMock::cancel()
|
| return;
|
|
|
| m_speakingFinishedTimer.stop();
|
| - m_speakingErrorOccurredTimer.startOneShot(.1);
|
| + m_speakingErrorOccurredTimer.startOneShot(.1, FROM_HERE);
|
| }
|
|
|
| void PlatformSpeechSynthesizerMock::pause()
|
|
|