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

Unified Diff: Source/modules/webaudio/AudioBasicInspectorNode.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/webaudio/AnalyserNode.cpp ('k') | Source/modules/webaudio/AudioBuffer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioBasicInspectorNode.cpp
diff --git a/Source/modules/webaudio/AudioBasicInspectorNode.cpp b/Source/modules/webaudio/AudioBasicInspectorNode.cpp
index 1e9e3f59ae623bb9d74125c2857b6b7f5105956f..894b64b80a57faeef0efaea0b88c7a68b0d39612 100644
--- a/Source/modules/webaudio/AudioBasicInspectorNode.cpp
+++ b/Source/modules/webaudio/AudioBasicInspectorNode.cpp
@@ -51,23 +51,23 @@ void AudioBasicInspectorNode::pullInputs(size_t framesToProcess)
input(0)->pull(output(0)->bus(), framesToProcess);
}
-void AudioBasicInspectorNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& es)
+void AudioBasicInspectorNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& exceptionState)
{
ASSERT(isMainThread());
AudioContext::AutoLocker locker(context());
- AudioNode::connect(destination, outputIndex, inputIndex, es);
+ AudioNode::connect(destination, outputIndex, inputIndex, exceptionState);
updatePullStatus();
}
-void AudioBasicInspectorNode::disconnect(unsigned outputIndex, ExceptionState& es)
+void AudioBasicInspectorNode::disconnect(unsigned outputIndex, ExceptionState& exceptionState)
{
ASSERT(isMainThread());
AudioContext::AutoLocker locker(context());
- AudioNode::disconnect(outputIndex, es);
+ AudioNode::disconnect(outputIndex, exceptionState);
updatePullStatus();
}
« no previous file with comments | « Source/modules/webaudio/AnalyserNode.cpp ('k') | Source/modules/webaudio/AudioBuffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698