| 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) {
|
|
|