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

Unified Diff: Source/core/rendering/svg/RenderSVGPath.h

Issue 33983003: Introduce DEFINE_RENDER_OBJECT_TYPE_CASTS to replace manual toRenderFoo, and use it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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/core/rendering/svg/RenderSVGPath.h
diff --git a/Source/core/rendering/svg/RenderSVGPath.h b/Source/core/rendering/svg/RenderSVGPath.h
index 5d83f86468dc24c32c738cf0a426f80cdeb9ab7a..8cec15c4c9282ac56a813018b735a8d44ebb657c 100644
--- a/Source/core/rendering/svg/RenderSVGPath.h
+++ b/Source/core/rendering/svg/RenderSVGPath.h
@@ -53,11 +53,7 @@ private:
Vector<FloatPoint> m_zeroLengthLinecapLocations;
};
-inline RenderSVGPath* toRenderSVGPath(RenderObject* object)
-{
- ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isSVGPath());
- return static_cast<RenderSVGPath*>(object);
-}
+DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGPath, isSVGPath());
}
« no previous file with comments | « Source/core/rendering/svg/RenderSVGInlineText.h ('k') | Source/core/rendering/svg/RenderSVGResourceContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698