| Index: third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| diff --git a/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h b/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| index 974088c7f4800bc4ed731e14b10d33068a5cfa99..43cfd86a907541c338c75e37afbb884580761d58 100644
|
| --- a/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| +++ b/third_party/WebKit/Source/wtf/typed_arrays/TypedArrayBase.h
|
| @@ -55,7 +55,7 @@ class TypedArrayBase : public ArrayBufferView {
|
| // Invoked by the indexed getter. Does not perform range checks; caller
|
| // is responsible for doing so and returning undefined as necessary.
|
| T item(unsigned index) const {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(index < TypedArrayBase<T>::m_length);
|
| + SECURITY_DCHECK(index < TypedArrayBase<T>::m_length);
|
| return TypedArrayBase<T>::data()[index];
|
| }
|
|
|
|
|