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

Unified Diff: Source/core/svg/SVGUseElement.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/SVGUseElement.cpp
diff --git a/Source/core/svg/SVGUseElement.cpp b/Source/core/svg/SVGUseElement.cpp
index 4fdcc9f7ff1c8b0928366d3a70940ed2cf2e80a4..ec9710421eec65ee7d099471007c1b30a710c62b 100644
--- a/Source/core/svg/SVGUseElement.cpp
+++ b/Source/core/svg/SVGUseElement.cpp
@@ -412,7 +412,7 @@ void SVGUseElement::buildShadowAndInstanceTree(SVGElement* target)
updateRelativeLengthsInformation();
}
-RenderObject* SVGUseElement::createRenderer(RenderStyle*)
+RenderObject* SVGUseElement::createRenderer(const RenderStyle*)
{
return new RenderSVGTransformableContainer(this);
}

Powered by Google App Engine
This is Rietveld 408576698