| Index: third_party/WebKit/Source/core/layout/LayoutText.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutText.h b/third_party/WebKit/Source/core/layout/LayoutText.h
|
| index 586ceac090cca4009f5de4bd1a11175764d301f8..a53b22a96d295d8740979dde24bf5f893a7e9ea3 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutText.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutText.h
|
| @@ -313,7 +313,7 @@ class CORE_EXPORT LayoutText : public LayoutObject {
|
| };
|
|
|
| inline UChar LayoutText::uncheckedCharacterAt(unsigned i) const {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(i < textLength());
|
| + SECURITY_DCHECK(i < textLength());
|
| return is8Bit() ? characters8()[i] : characters16()[i];
|
| }
|
|
|
|
|