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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTable.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/LayoutTable.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
index a60abf0d658c3524fd18737bcf3cf481e0eadc19..ccce3663e83244461c2002a968ef92c3ff3ebce6 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
@@ -161,7 +161,7 @@ void LayoutTable::addChild(LayoutObject* child, LayoutObject* beforeChild) {
wrapInAnonymousSection = false;
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
} else {
wrapInAnonymousSection = true;
@@ -407,7 +407,7 @@ LayoutUnit LayoutTable::convertStyleLogicalHeightToComputedHeight(
styleLogicalHeight, logicalHeight() - borderAndPadding,
borderAndPadding);
} else {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
return computedLogicalHeight.clampNegativeToZero();
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTableCol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698