| Index: third_party/WebKit/Source/platform/audio/AudioResamplerKernel.cpp
|
| diff --git a/third_party/WebKit/Source/platform/audio/AudioResamplerKernel.cpp b/third_party/WebKit/Source/platform/audio/AudioResamplerKernel.cpp
|
| index ac17832ef858d839aab7f3d5f247946269e0b336..3a9486182c9dfd6fbb9ea1242f78fd6b0ddb82ac 100644
|
| --- a/third_party/WebKit/Source/platform/audio/AudioResamplerKernel.cpp
|
| +++ b/third_party/WebKit/Source/platform/audio/AudioResamplerKernel.cpp
|
| @@ -67,7 +67,7 @@ float* AudioResamplerKernel::getSourcePointer(
|
| // Do bounds checking for the source buffer.
|
| bool isGood = m_fillIndex < m_sourceBuffer.size() &&
|
| m_fillIndex + framesNeeded <= m_sourceBuffer.size();
|
| - ASSERT(isGood);
|
| + DCHECK(isGood);
|
| if (!isGood)
|
| return 0;
|
|
|
|
|