| Index: Source/modules/speech/SpeechRecognition.cpp
|
| diff --git a/Source/modules/speech/SpeechRecognition.cpp b/Source/modules/speech/SpeechRecognition.cpp
|
| index 66fc97d1095b9416dc0fd1a7605750f1e8d85c6e..c477c29b86d6b1dcfb6c9fa222804913cad585b5 100644
|
| --- a/Source/modules/speech/SpeechRecognition.cpp
|
| +++ b/Source/modules/speech/SpeechRecognition.cpp
|
| @@ -45,11 +45,11 @@ PassRefPtr<SpeechRecognition> SpeechRecognition::create(ExecutionContext* contex
|
| return speechRecognition.release();
|
| }
|
|
|
| -void SpeechRecognition::start(ExceptionState& es)
|
| +void SpeechRecognition::start(ExceptionState& exceptionState)
|
| {
|
| ASSERT(m_controller);
|
| if (m_started) {
|
| - es.throwDOMException(InvalidStateError, ExceptionMessages::failedToExecute("start", "SpeechRecognition", "recognition has already started."));
|
| + exceptionState.throwDOMException(InvalidStateError, ExceptionMessages::failedToExecute("start", "SpeechRecognition", "recognition has already started."));
|
| return;
|
| }
|
|
|
|
|