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

Unified Diff: Source/core/svg/graphics/filters/SVGFEImage.cpp

Issue 1118133003: Rename rendering in core/svg. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/graphics/SVGImage.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/graphics/filters/SVGFEImage.cpp
diff --git a/Source/core/svg/graphics/filters/SVGFEImage.cpp b/Source/core/svg/graphics/filters/SVGFEImage.cpp
index 548f928019afb8a934fa361d18ae9ec2b1173bf1..b43827a16ec3747bdfa5102d525b1d29b9809f5d 100644
--- a/Source/core/svg/graphics/filters/SVGFEImage.cpp
+++ b/Source/core/svg/graphics/filters/SVGFEImage.cpp
@@ -144,8 +144,8 @@ TextStream& FEImage::externalRepresentation(TextStream& ts, int indent) const
IntSize imageSize;
if (m_image)
imageSize = m_image->size();
- else if (LayoutObject* renderer = referencedLayoutObject())
- imageSize = enclosingIntRect(getLayoutObjectRepaintRect(renderer)).size();
+ else if (LayoutObject* layoutObject = referencedLayoutObject())
+ imageSize = enclosingIntRect(getLayoutObjectRepaintRect(layoutObject)).size();
writeIndent(ts, indent);
ts << "[feImage";
FilterEffect::externalRepresentation(ts);
« no previous file with comments | « Source/core/svg/graphics/SVGImage.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698