| Index: third_party/WebKit/Source/core/css/FontFace.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/FontFace.cpp b/third_party/WebKit/Source/core/css/FontFace.cpp
|
| index c4ece8e63caca6bc55b6444248f697176e0a1b2d..07186cbc2609c29a60ab04472aa78aeb093976cd 100644
|
| --- a/third_party/WebKit/Source/core/css/FontFace.cpp
|
| +++ b/third_party/WebKit/Source/core/css/FontFace.cpp
|
| @@ -80,7 +80,7 @@ FontFace* FontFace::create(ExecutionContext* context,
|
| return create(context, family, source.getAsArrayBuffer(), descriptors);
|
| if (source.isArrayBufferView())
|
| return create(context, family, source.getAsArrayBufferView(), descriptors);
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return nullptr;
|
| }
|
|
|
| @@ -298,7 +298,7 @@ bool FontFace::setPropertyValue(const CSSValue* value,
|
| m_display = value;
|
| break;
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return false;
|
| }
|
| return true;
|
| @@ -350,7 +350,7 @@ String FontFace::status() const {
|
| case Error:
|
| return "error";
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
| return emptyString();
|
| }
|
|
|