| Index: third_party/WebKit/Source/platform/audio/AudioArray.h
|
| diff --git a/third_party/WebKit/Source/platform/audio/AudioArray.h b/third_party/WebKit/Source/platform/audio/AudioArray.h
|
| index fa2dae49d3afd9a450a80a1cbbf84c6c29699cb8..c04427c14e056efd939ab50381de6569ac845aef 100644
|
| --- a/third_party/WebKit/Source/platform/audio/AudioArray.h
|
| +++ b/third_party/WebKit/Source/platform/audio/AudioArray.h
|
| @@ -109,7 +109,7 @@ class AudioArray {
|
| T& at(size_t i) {
|
| // Note that although it is a size_t, m_size is now guaranteed to be
|
| // no greater than max unsigned. This guarantee is enforced in allocate().
|
| - ASSERT_WITH_SECURITY_IMPLICATION(i < size());
|
| + SECURITY_DCHECK(i < size());
|
| return data()[i];
|
| }
|
|
|
|
|