| Index: third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngineBaseline.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngineBaseline.cpp b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngineBaseline.cpp
|
| index 560d971671948399be37b02732835171d124d411..680e8ead57c86615c420034ec868b928ba49b3e8 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngineBaseline.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngineBaseline.cpp
|
| @@ -50,7 +50,7 @@ float SVGTextLayoutEngineBaseline::calculateBaselineShift(
|
| case BS_SUPER:
|
| return fontData->getFontMetrics().floatHeight() / 2 / m_effectiveZoom;
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return 0;
|
| }
|
| }
|
| @@ -103,7 +103,7 @@ SVGTextLayoutEngineBaseline::dominantBaselineToAlignmentBaseline(
|
| case DB_TEXT_BEFORE_EDGE:
|
| return AB_TEXT_BEFORE_EDGE;
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return AB_AUTO;
|
| }
|
| }
|
| @@ -157,7 +157,7 @@ float SVGTextLayoutEngineBaseline::calculateAlignmentBaselineShift(
|
| return ascent / 2;
|
| case AB_BASELINE:
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return 0;
|
| }
|
| }
|
|
|