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

Unified Diff: third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp

Issue 2109333002: Replace ASSERT_NOT_REACHED with NOTREACHED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/animation/SVGPathSegInterpolationFunctions.cpp
diff --git a/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
index 2242b51191b6606790c6993d32f28781b39b024b..0f806164c3a4f9b4069586239e145c96e02a343a 100644
--- a/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
+++ b/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
@@ -263,7 +263,7 @@ std::unique_ptr<InterpolableValue> SVGPathSegInterpolationFunctions::consumePath
case PathSegUnknown:
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}
}
@@ -308,7 +308,7 @@ PathSegmentData SVGPathSegInterpolationFunctions::consumeInterpolablePathSeg(con
case PathSegUnknown:
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return PathSegmentData();
}
}

Powered by Google App Engine
This is Rietveld 408576698