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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTransform.cpp

Issue 2738863002: Replace ASSERT with DCHECK in core/svg/ (Closed)
Patch Set: Split DCHECKS wherever possible 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/svg/SVGTransform.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGTransform.cpp b/third_party/WebKit/Source/core/svg/SVGTransform.cpp
index 0518512768ffa8b4cae33ef550c6ca5434e0b7e6..faff3e00875a521b5d18940b5c6198112456a95e 100644
--- a/third_party/WebKit/Source/core/svg/SVGTransform.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGTransform.cpp
@@ -201,7 +201,7 @@ String SVGTransform::valueAsString() const {
arguments[argumentCount++] = m_angle;
break;
}
- ASSERT(argumentCount <= WTF_ARRAY_LENGTH(arguments));
+ DCHECK_LE(argumentCount, WTF_ARRAY_LENGTH(arguments));
StringBuilder builder;
builder.append(transformTypePrefixForParsing(m_transformType));

Powered by Google App Engine
This is Rietveld 408576698