| Index: third_party/WebKit/Source/wtf/Vector.h
|
| diff --git a/third_party/WebKit/Source/wtf/Vector.h b/third_party/WebKit/Source/wtf/Vector.h
|
| index 3178da4f7627c19e675e87f29d5aeb7fb9a58479..90ef104e75133713348f9a6509b6bac720044ba6 100644
|
| --- a/third_party/WebKit/Source/wtf/Vector.h
|
| +++ b/third_party/WebKit/Source/wtf/Vector.h
|
| @@ -1531,7 +1531,7 @@ inline void Vector<T, inlineCapacity, Allocator>::remove(size_t position) {
|
| template <typename T, size_t inlineCapacity, typename Allocator>
|
| inline void Vector<T, inlineCapacity, Allocator>::remove(size_t position,
|
| size_t length) {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(position <= size());
|
| + SECURITY_DCHECK(position <= size());
|
| if (!length)
|
| return;
|
| RELEASE_ASSERT(position + length <= size());
|
|
|