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

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

Issue 921633007: Move the SVG container code from rendering/svg to layout/svg. (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
Index: Source/core/layout/svg/LayoutSVGResourceFilterPrimitive.h
diff --git a/Source/core/layout/svg/LayoutSVGResourceFilterPrimitive.h b/Source/core/layout/svg/LayoutSVGResourceFilterPrimitive.h
index 17f03a315c59fdd35b0604704ea4cb24e3838874..ee44ab70ab95e4f096f56e85f1b579f7a679149e 100644
--- a/Source/core/layout/svg/LayoutSVGResourceFilterPrimitive.h
+++ b/Source/core/layout/svg/LayoutSVGResourceFilterPrimitive.h
@@ -31,10 +31,10 @@
namespace blink {
-class LayoutSVGResourceFilterPrimitive final : public RenderSVGHiddenContainer {
+class LayoutSVGResourceFilterPrimitive final : public LayoutSVGHiddenContainer {
public:
explicit LayoutSVGResourceFilterPrimitive(SVGElement* filterPrimitiveElement)
- : RenderSVGHiddenContainer(filterPrimitiveElement)
+ : LayoutSVGHiddenContainer(filterPrimitiveElement)
{
}
@@ -43,7 +43,7 @@ public:
virtual void styleDidChange(StyleDifference, const LayoutStyle*) override;
virtual const char* renderName() const override { return "LayoutSVGResourceFilterPrimitive"; }
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGResourceFilterPrimitive || RenderSVGHiddenContainer::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGResourceFilterPrimitive || LayoutSVGHiddenContainer::isOfType(type); }
inline void primitiveAttributeChanged(const QualifiedName& attribute)
{
« no previous file with comments | « Source/core/layout/svg/LayoutSVGResourceContainer.cpp ('k') | Source/core/layout/svg/LayoutSVGResourceFilterPrimitive.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698