| Index: Source/modules/webaudio/WaveShaperNode.cpp
|
| diff --git a/Source/modules/webaudio/WaveShaperNode.cpp b/Source/modules/webaudio/WaveShaperNode.cpp
|
| index 7e2064597ebda8ed3a8ea3b3a3f0228ca99127a4..3e84aaa304b5f78b4ebf588164b332468e5fc943 100644
|
| --- a/Source/modules/webaudio/WaveShaperNode.cpp
|
| +++ b/Source/modules/webaudio/WaveShaperNode.cpp
|
| @@ -56,7 +56,7 @@ Float32Array* WaveShaperNode::curve()
|
| return waveShaperProcessor()->curve();
|
| }
|
|
|
| -void WaveShaperNode::setOversample(const String& type, ExceptionState& es)
|
| +void WaveShaperNode::setOversample(const String& type, ExceptionState& exceptionState)
|
| {
|
| ASSERT(isMainThread());
|
|
|
| @@ -72,7 +72,7 @@ void WaveShaperNode::setOversample(const String& type, ExceptionState& es)
|
| } else if (type == "4x") {
|
| waveShaperProcessor()->setOversample(WaveShaperProcessor::OverSample4x);
|
| } else {
|
| - es.throwDOMException(
|
| + exceptionState.throwDOMException(
|
| InvalidStateError,
|
| ExceptionMessages::failedToSet(
|
| "oversample",
|
|
|