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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGBlock.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/svg/LayoutSVGBlock.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGBlock.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGBlock.cpp
index 396e43f7c3dfa5aac8c65e4325610739a1628906..b65c198c0db27fc9da785acd6711b49fbfc7fd26 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGBlock.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGBlock.cpp
@@ -62,7 +62,7 @@ bool LayoutSVGBlock::allowsOverflowClip() const {
void LayoutSVGBlock::absoluteRects(Vector<IntRect>&, const LayoutPoint&) const {
// This code path should never be taken for SVG, as we're assuming
// useTransforms=true everywhere, absoluteQuads should be used.
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void LayoutSVGBlock::willBeDestroyed() {
@@ -150,7 +150,7 @@ bool LayoutSVGBlock::nodeAtPoint(HitTestResult&,
const HitTestLocation&,
const LayoutPoint&,
HitTestAction) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return false;
}

Powered by Google App Engine
This is Rietveld 408576698