Index: third_party/WebKit/Source/platform/audio/AudioChannel.cpp |
diff --git a/third_party/WebKit/Source/platform/audio/AudioChannel.cpp b/third_party/WebKit/Source/platform/audio/AudioChannel.cpp |
index 459e85ac53744c2ff07480bd27ff41dc0c27f269..751fc1dcd419f0ec16933246afb949d7c7017e3c 100644 |
--- a/third_party/WebKit/Source/platform/audio/AudioChannel.cpp |
+++ b/third_party/WebKit/Source/platform/audio/AudioChannel.cpp |
@@ -36,7 +36,7 @@ |
using namespace VectorMath; |
void AudioChannel::resizeSmaller(size_t newLength) { |
- DCHECK_LE(newLength, m_length); |
+ ASSERT(newLength <= m_length); |
if (newLength <= m_length) |
m_length = newLength; |
} |