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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FEComposite.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/FEComposite.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEComposite.cpp b/third_party/WebKit/Source/platform/graphics/filters/FEComposite.cpp
index 260e2a5d0df399e9f7befb9302af467b6411382d..c06ceea71d60bc93815b952a068a1d1fb327a752 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FEComposite.cpp
+++ b/third_party/WebKit/Source/platform/graphics/filters/FEComposite.cpp
@@ -165,7 +165,7 @@ SkBlendMode ToBlendMode(CompositeOperationType mode) {
case FECOMPOSITE_OPERATOR_LIGHTER:
return SkBlendMode::kPlus;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return SkBlendMode::kSrcOver;
}
}

Powered by Google App Engine
This is Rietveld 408576698