| 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();
|
|
|