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

Unified Diff: Source/core/svg/SVGFilterElement.cpp

Issue 908243002: Move rendering/svg/RenderSVGResource* 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
« no previous file with comments | « Source/core/svg/SVGElement.cpp ('k') | Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFilterElement.cpp
diff --git a/Source/core/svg/SVGFilterElement.cpp b/Source/core/svg/SVGFilterElement.cpp
index 864142ad55155afb934b3cb70f30d6615179cafe..27d700e4e3f742204b86470336c517a9de2990ed 100644
--- a/Source/core/svg/SVGFilterElement.cpp
+++ b/Source/core/svg/SVGFilterElement.cpp
@@ -26,7 +26,7 @@
#include "core/svg/SVGFilterElement.h"
#include "core/XLinkNames.h"
-#include "core/rendering/svg/RenderSVGResourceFilter.h"
+#include "core/layout/svg/LayoutSVGResourceFilter.h"
#include "core/svg/SVGParserUtilities.h"
namespace blink {
@@ -122,7 +122,7 @@ void SVGFilterElement::svgAttributeChanged(const QualifiedName& attrName)
|| attrName == SVGNames::heightAttr)
updateRelativeLengthsInformation();
- RenderSVGResourceContainer* renderer = toRenderSVGResourceContainer(this->renderer());
+ LayoutSVGResourceContainer* renderer = toLayoutSVGResourceContainer(this->renderer());
if (renderer)
renderer->invalidateCacheAndMarkForLayout();
}
@@ -140,7 +140,7 @@ void SVGFilterElement::childrenChanged(const ChildrenChange& change)
LayoutObject* SVGFilterElement::createRenderer(const LayoutStyle&)
{
- RenderSVGResourceFilter* renderer = new RenderSVGResourceFilter(this);
+ LayoutSVGResourceFilter* renderer = new LayoutSVGResourceFilter(this);
for (const RefPtrWillBeMember<Node>& node : m_clientsToAdd)
renderer->addClientLayer(node.get());
« no previous file with comments | « Source/core/svg/SVGElement.cpp ('k') | Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698