| Index: Source/core/svg/SVGClipPathElement.cpp
|
| diff --git a/Source/core/svg/SVGClipPathElement.cpp b/Source/core/svg/SVGClipPathElement.cpp
|
| index 6686f34b6729b26da76f0e3b7f0e2d8ab5fe39b6..f5bd1295c1e3ecd7602575fe50df37ab20c2f381 100644
|
| --- a/Source/core/svg/SVGClipPathElement.cpp
|
| +++ b/Source/core/svg/SVGClipPathElement.cpp
|
| @@ -23,7 +23,7 @@
|
|
|
| #include "core/svg/SVGClipPathElement.h"
|
|
|
| -#include "core/rendering/svg/RenderSVGResourceClipper.h"
|
| +#include "core/layout/svg/LayoutSVGResourceClipper.h"
|
|
|
| namespace blink {
|
|
|
| @@ -56,7 +56,7 @@ void SVGClipPathElement::svgAttributeChanged(const QualifiedName& attrName)
|
|
|
| SVGElement::InvalidationGuard invalidationGuard(this);
|
|
|
| - RenderSVGResourceContainer* renderer = toRenderSVGResourceContainer(this->renderer());
|
| + LayoutSVGResourceContainer* renderer = toLayoutSVGResourceContainer(this->renderer());
|
| if (renderer)
|
| renderer->invalidateCacheAndMarkForLayout();
|
| }
|
| @@ -74,7 +74,7 @@ void SVGClipPathElement::childrenChanged(const ChildrenChange& change)
|
|
|
| LayoutObject* SVGClipPathElement::createRenderer(const LayoutStyle&)
|
| {
|
| - return new RenderSVGResourceClipper(this);
|
| + return new LayoutSVGResourceClipper(this);
|
| }
|
|
|
| }
|
|
|