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

Unified Diff: third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h

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/skia/SkiaUtils.h
diff --git a/third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h b/third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h
index 2469c7f5ea5d1c849f1a424f78f5901ed40216d7..93b6db0ed310969cf73d21617e8c7a3e4bb87678 100644
--- a/third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h
+++ b/third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h
@@ -101,7 +101,7 @@ inline WindRule SkFillTypeToWindRule(SkPath::FillType fill_type) {
case SkPath::kEvenOdd_FillType:
return static_cast<WindRule>(fill_type);
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
break;
}
return RULE_NONZERO;

Powered by Google App Engine
This is Rietveld 408576698