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

Unified Diff: third_party/WebKit/Source/core/css/CSSValue.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/css/CSSSelector.cpp ('k') | third_party/WebKit/Source/core/css/FontFace.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/CSSValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSValue.cpp b/third_party/WebKit/Source/core/css/CSSValue.cpp
index 68b5a3f6e9b03ec89df0d1492ffb3f32dccbd640..cc052ab154fc21fade9e71f408aa5420542f92dd 100644
--- a/third_party/WebKit/Source/core/css/CSSValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSValue.cpp
@@ -211,7 +211,7 @@ bool CSSValue::equals(const CSSValue& other) const {
case PendingSubstitutionValueClass:
return compareCSSValues<CSSPendingSubstitutionValue>(*this, other);
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return false;
}
return false;
@@ -304,7 +304,7 @@ String CSSValue::cssText() const {
case PendingSubstitutionValueClass:
return toCSSPendingSubstitutionValue(this)->customCSSText();
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return String();
}
@@ -438,7 +438,7 @@ void CSSValue::finalizeGarbageCollectedObject() {
toCSSPendingSubstitutionValue(this)->~CSSPendingSubstitutionValue();
return;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
DEFINE_TRACE(CSSValue) {
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSSelector.cpp ('k') | third_party/WebKit/Source/core/css/FontFace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698