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