| Index: third_party/WebKit/Source/core/layout/line/InlineTextBox.h
|
| diff --git a/third_party/WebKit/Source/core/layout/line/InlineTextBox.h b/third_party/WebKit/Source/core/layout/line/InlineTextBox.h
|
| index a9bec87f38bb4bbef0117be63257d35ea41f3b1b..30aceba9ac01a100c89709258c4aa6a17a915cfb 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/InlineTextBox.h
|
| +++ b/third_party/WebKit/Source/core/layout/line/InlineTextBox.h
|
| @@ -71,7 +71,7 @@ class CORE_EXPORT InlineTextBox : public InlineBox {
|
| void setNextTextBox(InlineTextBox* n) { m_nextTextBox = n; }
|
| void setPreviousTextBox(InlineTextBox* p) { m_prevTextBox = p; }
|
|
|
| - // FIXME: These accessors should ASSERT(!isDirty()). See
|
| + // FIXME: These accessors should DCHECK(!isDirty()). See
|
| // https://bugs.webkit.org/show_bug.cgi?id=97264
|
| unsigned start() const { return m_start; }
|
| unsigned end() const { return m_len ? m_start + m_len - 1 : m_start; }
|
|
|