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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTheme.cpp

Issue 2758683002: Replace ASSERT_NOT_REACHED with NOTREACHED in core/layout/ (Closed)
Patch Set: Created 3 years, 9 months 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
Index: third_party/WebKit/Source/core/layout/LayoutTheme.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
index cda01b9a95a70c7e59ae64e608057a28653fb548..1ab5d82aba2e75a7eb62409bec6b5a332fea5820 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
@@ -692,7 +692,7 @@ static FontDescription& getCachedFontDescription(CSSValueID systemFontID) {
case CSSValueNone:
return defaultDescription;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return defaultDescription;
}
}
@@ -787,7 +787,7 @@ Color LayoutTheme::systemColor(CSSValueID cssValueId) const {
default:
break;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return Color();
}

Powered by Google App Engine
This is Rietveld 408576698