| Index: third_party/WebKit/Source/core/layout/svg/SVGTextChunkBuilder.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/SVGTextChunkBuilder.cpp b/third_party/WebKit/Source/core/layout/svg/SVGTextChunkBuilder.cpp
|
| index d16536f59e3000c2f9b2d12098aa5659de2b7e1c..b51e4dcc71854511a173b45035e020900801027f 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/SVGTextChunkBuilder.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/SVGTextChunkBuilder.cpp
|
| @@ -32,7 +32,7 @@ float calculateTextAnchorShift(const ComputedStyle& style, float length) {
|
| bool isLTR = style.isLeftToRightDirection();
|
| switch (style.svgStyle().textAnchor()) {
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| case TA_START:
|
| return isLTR ? 0 : -length;
|
| case TA_MIDDLE:
|
| @@ -46,7 +46,7 @@ bool needsTextAnchorAdjustment(const ComputedStyle& style) {
|
| bool isLTR = style.isLeftToRightDirection();
|
| switch (style.svgStyle().textAnchor()) {
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| case TA_START:
|
| return !isLTR;
|
| case TA_MIDDLE:
|
|
|