Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/css/CSSValueList.cpp

Issue 2755493004: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/ (Closed)
Patch Set: Worked on Review Comments done Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/css/CSSValueList.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSValueList.cpp b/third_party/WebKit/Source/core/css/CSSValueList.cpp
index fac73e792404af9d4564c4b06ad368a013f65138..b9857536b0dfcb4a08457179eae13994f70bb44d 100644
--- a/third_party/WebKit/Source/core/css/CSSValueList.cpp
+++ b/third_party/WebKit/Source/core/css/CSSValueList.cpp
@@ -79,7 +79,7 @@ CSSValueList* CSSValueList::copy() const {
newList = createSlashSeparated();
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
newList->m_values = m_values;
return newList;
@@ -99,7 +99,7 @@ String CSSValueList::customCSSText() const {
separator = " / ";
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
unsigned size = m_values.size();

Powered by Google App Engine