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

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: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/ 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/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
This is Rietveld 408576698