| Index: third_party/WebKit/Source/platform/audio/ReverbAccumulationBuffer.cpp
|
| diff --git a/third_party/WebKit/Source/platform/audio/ReverbAccumulationBuffer.cpp b/third_party/WebKit/Source/platform/audio/ReverbAccumulationBuffer.cpp
|
| index 7c4ff6ee2043ae701b3e43d65b5907c7e9a7e68b..c83fc532a8d6580840692550d0fa42b8a725741a 100644
|
| --- a/third_party/WebKit/Source/platform/audio/ReverbAccumulationBuffer.cpp
|
| +++ b/third_party/WebKit/Source/platform/audio/ReverbAccumulationBuffer.cpp
|
| @@ -42,7 +42,7 @@ void ReverbAccumulationBuffer::readAndClear(float* destination,
|
| bool isCopySafe =
|
| m_readIndex <= bufferLength && numberOfFrames <= bufferLength;
|
|
|
| - ASSERT(isCopySafe);
|
| + DCHECK(isCopySafe);
|
| if (!isCopySafe)
|
| return;
|
|
|
| @@ -91,7 +91,7 @@ int ReverbAccumulationBuffer::accumulate(float* source,
|
| bool isSafe = writeIndex <= bufferLength &&
|
| numberOfFrames1 + writeIndex <= bufferLength &&
|
| numberOfFrames2 <= bufferLength;
|
| - ASSERT(isSafe);
|
| + DCHECK(isSafe);
|
| if (!isSafe)
|
| return 0;
|
|
|
|
|