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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceFilter.cpp

Issue 2748103015: Replace ASSERT with DCHECK in core/layout/<sub dirs> (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/LayoutSVGResourceFilter.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceFilter.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceFilter.cpp
index e914768dd8802c8e105ad792652dcbb5fc25ce73..a490c04b35934a34c0d49cb0c536235b7ffc4da2 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceFilter.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceFilter.cpp
@@ -73,7 +73,7 @@ void LayoutSVGResourceFilter::removeAllClientsFromCache(
void LayoutSVGResourceFilter::removeClientFromCache(LayoutObject* client,
bool markForInvalidation) {
- ASSERT(client);
+ DCHECK(client);
bool filterCached = m_filter.contains(client);
if (filterCached)

Powered by Google App Engine
This is Rietveld 408576698