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

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

Issue 889563002: Make RenderObject::style() return a const object (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix a crashers (everything is building!) 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/SVGCircleElement.cpp
diff --git a/Source/core/svg/SVGCircleElement.cpp b/Source/core/svg/SVGCircleElement.cpp
index 2590b0aea76b253c5c07cebe65ec7ad15dbd71b5..95853ca21850aa7f37ef9118cccbce1db7580fba 100644
--- a/Source/core/svg/SVGCircleElement.cpp
+++ b/Source/core/svg/SVGCircleElement.cpp
@@ -99,7 +99,7 @@ bool SVGCircleElement::selfHasRelativeLengths() const
|| m_r->currentValue()->isRelative();
}
-RenderObject* SVGCircleElement::createRenderer(RenderStyle*)
+RenderObject* SVGCircleElement::createRenderer(const RenderStyle*)
{
return new RenderSVGEllipse(this);
}

Powered by Google App Engine
This is Rietveld 408576698