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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBlock.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/LayoutBlock.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
index c5cc0e463a87a5d47d39fb45ad840d86e5d05970..721f6aa5a4290fda86a40e0738d0a3492e162758 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
@@ -461,7 +461,7 @@ bool LayoutBlock::updateLogicalWidthAndColumnWidth() {
}
void LayoutBlock::layoutBlock(bool) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
clearNeedsLayout();
}
@@ -2002,7 +2002,7 @@ bool LayoutBlock::hasMarginAfterQuirk(const LayoutBox* child) const {
}
const char* LayoutBlock::name() const {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return "LayoutBlock";
}

Powered by Google App Engine
This is Rietveld 408576698