Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Unified Diff: third_party/WebKit/Source/core/svg/SVGPathBlender.cpp

Issue 2748223002: Replace ASSERT_NOT_REACHED with NOTREACHED in core/svg/ (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGPathBlender.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGPathBlender.cpp b/third_party/WebKit/Source/core/svg/SVGPathBlender.cpp
index 4d883304aa218ddb23c92981f54aa9c8f6dc6abc..673ece2ddf7e3fbea890ce27b70d0ff5aac98d43 100644
--- a/third_party/WebKit/Source/core/svg/SVGPathBlender.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGPathBlender.cpp
@@ -205,7 +205,7 @@ static void updateCurrentPoint(FloatPoint& subPathPoint,
currentPoint = subPathPoint;
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
}
@@ -277,7 +277,7 @@ bool SVGPathBlender::BlendState::blendSegments(
}
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
updateCurrentPoint(m_fromSubPathPoint, m_fromCurrentPoint, fromSeg);
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGParsingError.cpp ('k') | third_party/WebKit/Source/core/svg/SVGPathBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698