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

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

Issue 2758683002: Replace ASSERT_NOT_REACHED with NOTREACHED in core/layout/ (Closed)
Patch Set: Rebase with latest 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 5717e45a741742c46546179e5f633fe1907a00ce..26784f061487390f76c7d33cf5f21f1b656d67d9 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
@@ -691,7 +691,7 @@ static FontDescription& getCachedFontDescription(CSSValueID systemFontID) {
case CSSValueNone:
return defaultDescription;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return defaultDescription;
}
}
@@ -786,7 +786,7 @@ Color LayoutTheme::systemColor(CSSValueID cssValueId) const {
default:
break;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return Color();
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTableCol.h ('k') | third_party/WebKit/Source/core/layout/ListMarkerText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698