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

Unified Diff: third_party/WebKit/Source/core/css/StyleRule.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/FontFace.cpp ('k') | third_party/WebKit/Source/core/frame/BarProp.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/StyleRule.cpp
diff --git a/third_party/WebKit/Source/core/css/StyleRule.cpp b/third_party/WebKit/Source/core/css/StyleRule.cpp
index 59b582c0bae0c15e849be270cb617bb101931367..2bcbd8c969ef66d0f789397c08c1255c6ea13d43 100644
--- a/third_party/WebKit/Source/core/css/StyleRule.cpp
+++ b/third_party/WebKit/Source/core/css/StyleRule.cpp
@@ -88,7 +88,7 @@ DEFINE_TRACE(StyleRuleBase) {
toStyleRuleViewport(this)->traceAfterDispatch(visitor);
return;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void StyleRuleBase::finalizeGarbageCollectedObject() {
@@ -127,7 +127,7 @@ void StyleRuleBase::finalizeGarbageCollectedObject() {
toStyleRuleViewport(this)->~StyleRuleViewport();
return;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
StyleRuleBase* StyleRuleBase::copy() const {
@@ -144,7 +144,7 @@ StyleRuleBase* StyleRuleBase::copy() const {
return toStyleRuleSupports(this)->copy();
case Import:
// FIXME: Copy import rules.
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
case Keyframes:
return toStyleRuleKeyframes(this)->copy();
« no previous file with comments | « third_party/WebKit/Source/core/css/FontFace.cpp ('k') | third_party/WebKit/Source/core/frame/BarProp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698