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

Unified Diff: Source/core/rendering/svg/SVGRenderTreeAsText.cpp

Issue 23295012: Introduce toSVGLineElement(), and use it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 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
« no previous file with comments | « Source/core/rendering/svg/SVGPathData.cpp ('k') | Source/core/svg/SVGLineElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/SVGRenderTreeAsText.cpp
diff --git a/Source/core/rendering/svg/SVGRenderTreeAsText.cpp b/Source/core/rendering/svg/SVGRenderTreeAsText.cpp
index 1eaf384472f5754eba421ce097a5e9e6bed37e4b..9f0c6ce63c96e44c0efe4cb52234c578241fc881 100644
--- a/Source/core/rendering/svg/SVGRenderTreeAsText.cpp
+++ b/Source/core/rendering/svg/SVGRenderTreeAsText.cpp
@@ -337,7 +337,7 @@ static TextStream& operator<<(TextStream& ts, const RenderSVGShape& shape)
writeNameValuePair(ts, "width", element->widthCurrentValue().value(lengthContext));
writeNameValuePair(ts, "height", element->heightCurrentValue().value(lengthContext));
} else if (svgElement->hasTagName(SVGNames::lineTag)) {
- SVGLineElement* element = static_cast<SVGLineElement*>(svgElement);
+ SVGLineElement* element = toSVGLineElement(svgElement);
writeNameValuePair(ts, "x1", element->x1CurrentValue().value(lengthContext));
writeNameValuePair(ts, "y1", element->y1CurrentValue().value(lengthContext));
writeNameValuePair(ts, "x2", element->x2CurrentValue().value(lengthContext));
« no previous file with comments | « Source/core/rendering/svg/SVGPathData.cpp ('k') | Source/core/svg/SVGLineElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698