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

Unified Diff: third_party/WebKit/Source/core/svg/SVGStaticStringList.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/SVGStaticStringList.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
index 97c94c90f20a0e80c29eeeb21d10cbf07d13d75a..8cbf62e2255eb5b13fcea2a372499ed1ebd50af3 100644
--- a/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
@@ -55,7 +55,7 @@ SVGPropertyBase* SVGStaticStringList::currentValueBase() {
}
const SVGPropertyBase& SVGStaticStringList::baseValueBase() const {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return *m_value;
}
@@ -64,16 +64,16 @@ bool SVGStaticStringList::isAnimating() const {
}
SVGPropertyBase* SVGStaticStringList::createAnimatedValue() {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}
void SVGStaticStringList::setAnimatedValue(SVGPropertyBase*) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void SVGStaticStringList::animationEnded() {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
bool SVGStaticStringList::needsSynchronizeAttribute() {
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGSVGElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGStringList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698