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

Unified Diff: Source/core/layout/svg/LayoutSVGImage.cpp

Issue 933953003: Move the remaining rendering/svg/RenderSVG* files to layout. (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/layout/svg/LayoutSVGImage.h ('k') | Source/core/layout/svg/LayoutSVGInlineText.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGImage.cpp
diff --git a/Source/core/layout/svg/LayoutSVGImage.cpp b/Source/core/layout/svg/LayoutSVGImage.cpp
index a82d9645fbf140ab5a3ae9e4210409c9e5b67ff9..1a7140412d0bddf002c2895a4377e1d317dcb52e 100644
--- a/Source/core/layout/svg/LayoutSVGImage.cpp
+++ b/Source/core/layout/svg/LayoutSVGImage.cpp
@@ -42,7 +42,7 @@
namespace blink {
LayoutSVGImage::LayoutSVGImage(SVGImageElement* impl)
- : RenderSVGModelObject(impl)
+ : LayoutSVGModelObject(impl)
, m_needsBoundariesUpdate(true)
, m_needsTransformUpdate(true)
, m_imageResource(LayoutImageResource::create())
@@ -58,7 +58,7 @@ void LayoutSVGImage::destroy()
{
ImageQualityController::remove(this);
m_imageResource->shutdown();
- RenderSVGModelObject::destroy();
+ LayoutSVGModelObject::destroy();
}
FloatSize LayoutSVGImage::computeImageViewportSize(ImageResource& cachedImage) const
@@ -137,7 +137,7 @@ void LayoutSVGImage::layout()
// If our bounds changed, notify the parents.
if (transformOrBoundariesUpdate)
- RenderSVGModelObject::setNeedsBoundariesUpdate();
+ LayoutSVGModelObject::setNeedsBoundariesUpdate();
clearNeedsLayout();
}
« no previous file with comments | « Source/core/layout/svg/LayoutSVGImage.h ('k') | Source/core/layout/svg/LayoutSVGInlineText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698