| 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 9df94450e42381ac11cec4c32ae478dc8994157e..9dff72566f310a1a1b9235a9f1966b982034e177 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutText.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutText.h
|
| @@ -247,15 +247,13 @@ class CORE_EXPORT LayoutText : public LayoutObject {
|
| unsigned length() const final { return textLength(); }
|
|
|
| // See the class comment as to why we shouldn't call this function directly.
|
| - void paint(const PaintInfo&, const LayoutPoint&) const final {
|
| - ASSERT_NOT_REACHED();
|
| - }
|
| - void layout() final { ASSERT_NOT_REACHED(); }
|
| + void paint(const PaintInfo&, const LayoutPoint&) const final { NOTREACHED(); }
|
| + void layout() final { NOTREACHED(); }
|
| bool nodeAtPoint(HitTestResult&,
|
| const HitTestLocation&,
|
| const LayoutPoint&,
|
| HitTestAction) final {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return false;
|
| }
|
|
|
|
|