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

Unified Diff: third_party/WebKit/Source/core/svg/SVGStringList.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/SVGStringList.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
index be9c878d8bdb5866890c98f610736c27711fe4fe..2549e65eabc77b367a44f0445b0f7a20b5f0c72a 100644
--- a/third_party/WebKit/Source/core/svg/SVGStringList.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
@@ -147,7 +147,7 @@ bool SVGStringList::checkIndexBound(size_t index,
void SVGStringList::add(SVGPropertyBase* other, SVGElement* contextElement) {
// SVGStringList is never animated.
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void SVGStringList::calculateAnimatedValue(SVGAnimationElement*,
@@ -158,12 +158,12 @@ void SVGStringList::calculateAnimatedValue(SVGAnimationElement*,
SVGPropertyBase*,
SVGElement*) {
// SVGStringList is never animated.
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
float SVGStringList::calculateDistance(SVGPropertyBase*, SVGElement*) {
// SVGStringList is never animated.
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return -1.0f;
}
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp ('k') | third_party/WebKit/Source/core/svg/SVGTransform.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698