Index: third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp |
diff --git a/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp b/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp |
index 3ad18dff95ecf83ca31c08f8dd43b0fb2515872d..5af6627a5d69f9b80353249d36f0ce3a8da4277f 100644 |
--- a/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp |
+++ b/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp |
@@ -77,7 +77,7 @@ void WaveShaperProcessor::process(const AudioBus* source, AudioBus* destination, |
} |
bool channelCountMatches = source->numberOfChannels() == destination->numberOfChannels() && source->numberOfChannels() == m_kernels.size(); |
- ASSERT(channelCountMatches); |
+ DCHECK(channelCountMatches); |
if (!channelCountMatches) |
return; |