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

Unified Diff: Source/core/loader/ImageLoader.cpp

Issue 927583002: Moving RenderSVG* files from rendering/ 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/SVGTextQuery.cpp ('k') | Source/core/paint/SVGForeignObjectPainter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/ImageLoader.cpp
diff --git a/Source/core/loader/ImageLoader.cpp b/Source/core/loader/ImageLoader.cpp
index a7a3c5696632cfe941ce13b7f0d2c2da1530d6eb..9282bd6f5c9b4bde81d8e834c40bf1dd3f2d0116 100644
--- a/Source/core/loader/ImageLoader.cpp
+++ b/Source/core/loader/ImageLoader.cpp
@@ -37,7 +37,7 @@
#include "core/html/parser/HTMLParserIdioms.h"
#include "core/layout/LayoutImage.h"
#include "core/layout/LayoutVideo.h"
-#include "core/rendering/svg/RenderSVGImage.h"
+#include "core/layout/svg/LayoutSVGImage.h"
#include "platform/Logging.h"
#include "platform/weborigin/SecurityOrigin.h"
#include "public/platform/WebURLRequest.h"
@@ -451,7 +451,7 @@ LayoutImageResource* ImageLoader::layoutImageResource()
return toLayoutImage(renderer)->imageResource();
if (renderer->isSVGImage())
- return toRenderSVGImage(renderer)->imageResource();
+ return toLayoutSVGImage(renderer)->imageResource();
if (renderer->isVideo())
return toLayoutVideo(renderer)->imageResource();
« no previous file with comments | « Source/core/layout/svg/SVGTextQuery.cpp ('k') | Source/core/paint/SVGForeignObjectPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698