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

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

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/LayoutSVGGradientStop.cpp ('k') | Source/core/layout/svg/LayoutSVGImage.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGImage.h
diff --git a/Source/core/layout/svg/LayoutSVGImage.h b/Source/core/layout/svg/LayoutSVGImage.h
index 8331149622fdac04dcfc543d4f77d157924f0732..41a82c80454dc012a0a29be2d122c39e44f102d4 100644
--- a/Source/core/layout/svg/LayoutSVGImage.h
+++ b/Source/core/layout/svg/LayoutSVGImage.h
@@ -24,7 +24,7 @@
#ifndef LayoutSVGImage_h
#define LayoutSVGImage_h
-#include "core/rendering/svg/RenderSVGModelObject.h"
+#include "core/layout/svg/LayoutSVGModelObject.h"
class SkPicture;
@@ -33,7 +33,7 @@ namespace blink {
class LayoutImageResource;
class SVGImageElement;
-class LayoutSVGImage final : public RenderSVGModelObject {
+class LayoutSVGImage final : public LayoutSVGModelObject {
public:
explicit LayoutSVGImage(SVGImageElement*);
virtual ~LayoutSVGImage();
@@ -49,7 +49,7 @@ public:
RefPtr<const SkPicture>& bufferedForeground() { return m_bufferedForeground; }
virtual FloatRect objectBoundingBox() const override { return m_objectBoundingBox; }
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGImage || RenderSVGModelObject::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGImage || LayoutSVGModelObject::isOfType(type); }
private:
virtual const char* renderName() const override { return "LayoutSVGImage"; }
« no previous file with comments | « Source/core/layout/svg/LayoutSVGGradientStop.cpp ('k') | Source/core/layout/svg/LayoutSVGImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698