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

Unified Diff: third_party/WebKit/Source/core/layout/ListMarkerText.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/ListMarkerText.cpp
diff --git a/third_party/WebKit/Source/core/layout/ListMarkerText.cpp b/third_party/WebKit/Source/core/layout/ListMarkerText.cpp
index c01bbeb7d221ebbdea27dabcbe0b8d28bcc19303..7001fbcb0f0b88e26b249afe8ae4697fe72f8ad3 100644
--- a/third_party/WebKit/Source/core/layout/ListMarkerText.cpp
+++ b/third_party/WebKit/Source/core/layout/ListMarkerText.cpp
@@ -526,7 +526,7 @@ static EListStyleType effectiveListMarkerType(EListStyleType type, int count) {
return (count < 1) ? EListStyleType::kDecimal : type;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return type;
}
@@ -601,7 +601,7 @@ UChar suffix(EListStyleType type, int count) {
return 0x3001;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return '.';
}
@@ -934,7 +934,7 @@ String text(EListStyleType type, int count) {
return toHebrew(count);
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return "";
}

Powered by Google App Engine
This is Rietveld 408576698