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

Unified Diff: Source/core/svg/SVGTextPathElement.cpp

Issue 889563002: Make RenderObject::style() return a const object (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Blind fix for Mac. Created 5 years, 11 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/svg/SVGTextPathElement.cpp
diff --git a/Source/core/svg/SVGTextPathElement.cpp b/Source/core/svg/SVGTextPathElement.cpp
index 52c5d9aa5594438b4aaefb4eb5f0c4d6be95a27b..dcec2127536c7fe8e02c9b577955e428166da5bd 100644
--- a/Source/core/svg/SVGTextPathElement.cpp
+++ b/Source/core/svg/SVGTextPathElement.cpp
@@ -116,7 +116,7 @@ void SVGTextPathElement::svgAttributeChanged(const QualifiedName& attrName)
markForLayoutAndParentResourceInvalidation(object);
}
-RenderObject* SVGTextPathElement::createRenderer(RenderStyle*)
+RenderObject* SVGTextPathElement::createRenderer(const RenderStyle*)
{
return new RenderSVGTextPath(this);
}

Powered by Google App Engine
This is Rietveld 408576698