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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h

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/graphics/filters/SVGFilterBuilder.h
diff --git a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
index 62c36fab06c75737485a7e426968d9735df39d64..09bdd31ff4ce3bdf7d3534148fc8d979e2a95ae1 100644
--- a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
+++ b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
@@ -51,7 +51,7 @@ class SVGFilterGraphNodeMap final
inline FilterEffectSet& effectReferences(FilterEffect* effect) {
// Only allowed for effects belongs to this builder.
- ASSERT(m_effectReferences.contains(effect));
+ DCHECK(m_effectReferences.contains(effect));
return m_effectReferences.find(effect)->value;
}

Powered by Google App Engine
This is Rietveld 408576698