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

Unified Diff: Source/core/svg/SVGImageElement.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/SVGGraphicsElement.cpp ('k') | Source/core/svg/SVGLengthContext.cpp » ('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 35f21ce7717c931c5dea71e859efb1c008424a1e..786f32affd5c2d8674b0fb3d57f16eb1f018f1a1 100644
--- a/Source/core/svg/SVGImageElement.cpp
+++ b/Source/core/svg/SVGImageElement.cpp
@@ -64,9 +64,9 @@ DEFINE_TRACE(SVGImageElement)
bool SVGImageElement::currentFrameHasSingleSecurityOrigin() const
{
- if (LayoutSVGImage* renderSVGImage = toLayoutSVGImage(layoutObject())) {
- if (renderSVGImage->imageResource()->hasImage()) {
- if (Image* image = renderSVGImage->imageResource()->cachedImage()->image())
+ if (LayoutSVGImage* layoutSVGImage = toLayoutSVGImage(layoutObject())) {
+ if (layoutSVGImage->imageResource()->hasImage()) {
+ if (Image* image = layoutSVGImage->imageResource()->cachedImage()->image())
return image->currentFrameHasSingleSecurityOrigin();
}
}
« no previous file with comments | « Source/core/svg/SVGGraphicsElement.cpp ('k') | Source/core/svg/SVGLengthContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698