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

Unified Diff: third_party/WebKit/Source/core/layout/ListMarkerText.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/ListMarkerText.cpp
diff --git a/third_party/WebKit/Source/core/layout/ListMarkerText.cpp b/third_party/WebKit/Source/core/layout/ListMarkerText.cpp
index 54ecee9c77330f30180f4f4e76be975470e81e95..86f7a55fa7570932b00a0e2501f3d731f8af1492 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