| Index: third_party/WebKit/Source/platform/SharedBuffer.cpp
|
| diff --git a/third_party/WebKit/Source/platform/SharedBuffer.cpp b/third_party/WebKit/Source/platform/SharedBuffer.cpp
|
| index f898cd14e4ccc48595c031d43af6bcefb8202701..3dc854b59dc7cbb14683f0b1f286cf761b1a31df 100644
|
| --- a/third_party/WebKit/Source/platform/SharedBuffer.cpp
|
| +++ b/third_party/WebKit/Source/platform/SharedBuffer.cpp
|
| @@ -180,7 +180,7 @@ size_t SharedBuffer::getSomeDataInternal(const char*& someData,
|
| return 0;
|
| }
|
|
|
| - ASSERT_WITH_SECURITY_IMPLICATION(position < m_size);
|
| + SECURITY_DCHECK(position < m_size);
|
| size_t consecutiveSize = m_buffer.size();
|
| if (position < consecutiveSize) {
|
| someData = m_buffer.data() + position;
|
|
|