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 9239d9d5368cdd3e07d78ae573c94e47d8d1bc7f..a27c62c5cab40c1fd560020b825e27df05c6fb0a 100644 |
--- a/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp |
+++ b/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp |
@@ -84,7 +84,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; |