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

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

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/svg/SVGImageElement.h ('k') | Source/core/svg/SVGLinearGradientElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGImageElement.cpp
diff --git a/Source/core/svg/SVGImageElement.cpp b/Source/core/svg/SVGImageElement.cpp
index 83e062f88b6344c10ef8bcefe2780081682ab19d..0176a49e7de5145ef3e7978fd11793c633237c3e 100644
--- a/Source/core/svg/SVGImageElement.cpp
+++ b/Source/core/svg/SVGImageElement.cpp
@@ -136,7 +136,7 @@ void SVGImageElement::svgAttributeChanged(const QualifiedName& attrName)
return;
}
- RenderObject* renderer = this->renderer();
+ LayoutObject* renderer = this->renderer();
if (!renderer)
return;
@@ -162,7 +162,7 @@ bool SVGImageElement::selfHasRelativeLengths() const
|| m_height->currentValue()->isRelative();
}
-RenderObject* SVGImageElement::createRenderer(const RenderStyle&)
+LayoutObject* SVGImageElement::createRenderer(const RenderStyle&)
{
return new RenderSVGImage(this);
}
« no previous file with comments | « Source/core/svg/SVGImageElement.h ('k') | Source/core/svg/SVGLinearGradientElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698