| Index: third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp
|
| index ae9ae322976e43fe3dc9f2d0b6a7df107280d5a6..572b12fb3cb3f5d1acb03e743cacbe621a38a586 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp
|
| @@ -59,7 +59,7 @@ WaveShaperProcessor* WaveShaperNode::getWaveShaperProcessor() const
|
|
|
| void WaveShaperNode::setCurve(DOMFloat32Array* curve, ExceptionState& exceptionState)
|
| {
|
| - ASSERT(isMainThread());
|
| + DCHECK(isMainThread());
|
|
|
| if (curve && curve->length() < 2) {
|
| exceptionState.throwDOMException(
|
| @@ -81,7 +81,7 @@ DOMFloat32Array* WaveShaperNode::curve()
|
|
|
| void WaveShaperNode::setOversample(const String& type)
|
| {
|
| - ASSERT(isMainThread());
|
| + DCHECK(isMainThread());
|
|
|
| // This is to synchronize with the changes made in
|
| // AudioBasicProcessorNode::checkNumberOfChannelsForInput() where we can
|
|
|