Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1605)

Unified Diff: Source/modules/speech/SpeechSynthesis.cpp

Issue 72363002: Rename es => exceptionState in other than bindings/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Retry Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/speech/SpeechRecognition.cpp ('k') | Source/modules/webaudio/AnalyserNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « Source/modules/speech/SpeechRecognition.cpp ('k') | Source/modules/webaudio/AnalyserNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698