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

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

Issue 2522043003: Replace ASSERT_NOT_REACHED -> NOTREACHED (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGAngle.cpp ('k') | third_party/WebKit/Source/core/svg/SVGString.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGPoint.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGPoint.cpp b/third_party/WebKit/Source/core/svg/SVGPoint.cpp
index 879b362eb600c3371906912d14c408c6381170d1..82314899142cfd4343bdcbb5d3ca88bbc412a34c 100644
--- a/third_party/WebKit/Source/core/svg/SVGPoint.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGPoint.cpp
@@ -95,7 +95,7 @@ String SVGPoint::valueAsString() const {
void SVGPoint::add(SVGPropertyBase* other, SVGElement*) {
// SVGPoint is not animated by itself
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement,
@@ -106,13 +106,13 @@ void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement,
SVGPropertyBase* toAtEndOfDurationValue,
SVGElement*) {
// SVGPoint is not animated by itself
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
float SVGPoint::calculateDistance(SVGPropertyBase* to,
SVGElement* contextElement) {
// SVGPoint is not animated by itself
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return 0.0f;
}
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGAngle.cpp ('k') | third_party/WebKit/Source/core/svg/SVGString.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698