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

Unified Diff: third_party/WebKit/Source/core/css/FontFace.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/CSSValue.cpp ('k') | third_party/WebKit/Source/core/css/StyleRule.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/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();
}
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSValue.cpp ('k') | third_party/WebKit/Source/core/css/StyleRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698