| Index: third_party/WebKit/Source/wtf/text/StringBuffer.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/StringBuffer.h b/third_party/WebKit/Source/wtf/text/StringBuffer.h
|
| index 326d38f485999eec4efe10ec8214084e1f159a20..ef5908cd7a2bbcfab8772de86d40ad50dba2dc40 100644
|
| --- a/third_party/WebKit/Source/wtf/text/StringBuffer.h
|
| +++ b/third_party/WebKit/Source/wtf/text/StringBuffer.h
|
| @@ -60,7 +60,7 @@ class StringBuffer {
|
| }
|
|
|
| CharType& operator[](unsigned i) {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(i < length());
|
| + SECURITY_DCHECK(i < length());
|
| return characters()[i];
|
| }
|
|
|
|
|