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

Unified Diff: third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp

Issue 2109333002: Replace ASSERT_NOT_REACHED with NOTREACHED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/animation/PaintPropertyFunctions.cpp
diff --git a/third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp b/third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp
index b4d6f9691351546e0fd9d80ae5d8f96375d74c37..d6a3677ed43dae050411d63063105b11b7be6339 100644
--- a/third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp
+++ b/third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp
@@ -36,7 +36,7 @@ bool PaintPropertyFunctions::getColor(CSSPropertyID property, const ComputedStyl
case CSSPropertyStroke:
return getColorFromPaint(style.svgStyle().strokePaintType(), style.svgStyle().strokePaintColor(), result);
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return false;
}
}
@@ -51,7 +51,7 @@ void PaintPropertyFunctions::setColor(CSSPropertyID property, ComputedStyle& sty
style.accessSVGStyle().setStrokePaint(SVG_PAINTTYPE_RGBCOLOR, color, String(), true, true);
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
}

Powered by Google App Engine
This is Rietveld 408576698