| Index: Source/modules/speech/SpeechSynthesis.cpp
|
| diff --git a/Source/modules/speech/SpeechSynthesis.cpp b/Source/modules/speech/SpeechSynthesis.cpp
|
| index d477d7bfb573fe9168eb1df876ed693add162f01..2c871ef6d615e9aea46603e870c2e99d3f825a8a 100644
|
| --- a/Source/modules/speech/SpeechSynthesis.cpp
|
| +++ b/Source/modules/speech/SpeechSynthesis.cpp
|
| @@ -107,10 +107,10 @@ void SpeechSynthesis::startSpeakingImmediately(SpeechSynthesisUtterance* utteran
|
| m_platformSpeechSynthesizer->speak(utterance->platformUtterance());
|
| }
|
|
|
| -void SpeechSynthesis::speak(SpeechSynthesisUtterance* utterance, ExceptionState& es)
|
| +void SpeechSynthesis::speak(SpeechSynthesisUtterance* utterance, ExceptionState& exceptionState)
|
| {
|
| if (!utterance) {
|
| - es.throwTypeError("Invalid utterance argument");
|
| + exceptionState.throwTypeError("Invalid utterance argument");
|
| return;
|
| }
|
|
|
|
|