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

Unified Diff: Source/platform/graphics/Path.cpp

Issue 394353002: Replace tests of ASSERT_ENABLED with ENABLE(ASSERT). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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: Source/platform/graphics/Path.cpp
diff --git a/Source/platform/graphics/Path.cpp b/Source/platform/graphics/Path.cpp
index a22acbef2a5438fea9de68f1e25753c4162510cc..f2cb7cda8e69cbc064e36dc7eaf631efae562e48 100644
--- a/Source/platform/graphics/Path.cpp
+++ b/Source/platform/graphics/Path.cpp
@@ -497,7 +497,7 @@ bool Path::unionPath(const Path& other)
return Op(m_path, other.m_path, kUnion_PathOp, &m_path);
}
-#if ASSERT_ENABLED
+#if ENABLE(ASSERT)
bool ellipseIsRenderable(float startAngle, float endAngle)
{
return (std::abs(endAngle - startAngle) < twoPiFloat)

Powered by Google App Engine
This is Rietveld 408576698