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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp

Issue 2807923002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/graphics (Closed)
Patch Set: fix typo Created 3 years, 8 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/platform/graphics/filters/FilterEffect.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp
index 2efcce089f24b34bc9546491fa4fa2c17d8ed7b3..36ef9c7b47b5830f33bdc605082515b065687a0c 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp
+++ b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.cpp
@@ -34,7 +34,7 @@ FilterEffect::FilterEffect(Filter* filter)
clips_to_bounds_(true),
origin_tainted_(false),
operating_color_space_(kColorSpaceLinearRGB) {
- ASSERT(filter_);
+ DCHECK(filter_);
}
FilterEffect::~FilterEffect() {}

Powered by Google App Engine
This is Rietveld 408576698