| Index: third_party/WebKit/Source/platform/text/SegmentedString.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/SegmentedString.cpp b/third_party/WebKit/Source/platform/text/SegmentedString.cpp
|
| index 76c61f1acad1d93b7fc59bc740f2ca5f4ac5c760..197cb169665b1183234c4075e8781f30dd84208b 100644
|
| --- a/third_party/WebKit/Source/platform/text/SegmentedString.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/SegmentedString.cpp
|
| @@ -177,7 +177,7 @@ String SegmentedString::toString() const {
|
| }
|
|
|
| void SegmentedString::advance(unsigned count, UChar* consumedCharacters) {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(count <= length());
|
| + SECURITY_DCHECK(count <= length());
|
| for (unsigned i = 0; i < count; ++i) {
|
| consumedCharacters[i] = currentChar();
|
| advance();
|
|
|