| Index: third_party/WebKit/Source/platform/audio/AudioFIFO.cpp
|
| diff --git a/third_party/WebKit/Source/platform/audio/AudioFIFO.cpp b/third_party/WebKit/Source/platform/audio/AudioFIFO.cpp
|
| index 13150b1a896a62f12f8bf1c2f6363a3756f45673..c35ce14df01364152229796decdc565d2558150e 100644
|
| --- a/third_party/WebKit/Source/platform/audio/AudioFIFO.cpp
|
| +++ b/third_party/WebKit/Source/platform/audio/AudioFIFO.cpp
|
| @@ -124,8 +124,7 @@ void AudioFIFO::findWrapLengths(size_t index,
|
| size_t size,
|
| size_t& part1Length,
|
| size_t& part2Length) {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(index < m_fifoLength &&
|
| - size <= m_fifoLength);
|
| + SECURITY_DCHECK(index < m_fifoLength && size <= m_fifoLength);
|
| if (index < m_fifoLength && size <= m_fifoLength) {
|
| if (index + size > m_fifoLength) {
|
| // Need to wrap. Figure out the length of each piece.
|
|
|