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

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

Issue 1118133003: Rename rendering in core/svg. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/svg/SVGFilterElement.cpp
diff --git a/Source/core/svg/SVGFilterElement.cpp b/Source/core/svg/SVGFilterElement.cpp
index 2ae0f07bcd7ea1a079e819915e6dd9c29192597c..f997d820869e5e46c77fa6682fd9c4b0006e3e15 100644
--- a/Source/core/svg/SVGFilterElement.cpp
+++ b/Source/core/svg/SVGFilterElement.cpp
@@ -102,9 +102,9 @@ void SVGFilterElement::svgAttributeChanged(const QualifiedName& attrName)
|| attrName == SVGNames::filterUnitsAttr
|| attrName == SVGNames::primitiveUnitsAttr) {
SVGElement::InvalidationGuard invalidationGuard(this);
- LayoutSVGResourceContainer* renderer = toLayoutSVGResourceContainer(this->layoutObject());
- if (renderer)
- renderer->invalidateCacheAndMarkForLayout();
+ LayoutSVGResourceContainer* layoutObject = toLayoutSVGResourceContainer(this->layoutObject());
+ if (layoutObject)
+ layoutObject->invalidateCacheAndMarkForLayout();
return;
}
@@ -125,13 +125,13 @@ void SVGFilterElement::childrenChanged(const ChildrenChange& change)
LayoutObject* SVGFilterElement::createLayoutObject(const ComputedStyle&)
{
- LayoutSVGResourceFilter* renderer = new LayoutSVGResourceFilter(this);
+ LayoutSVGResourceFilter* layoutObject = new LayoutSVGResourceFilter(this);
for (const RefPtrWillBeMember<Node>& node : m_clientsToAdd)
- renderer->addClientLayer(node.get());
+ layoutObject->addClientLayer(node.get());
m_clientsToAdd.clear();
- return renderer;
+ return layoutObject;
}
bool SVGFilterElement::selfHasRelativeLengths() const
« no previous file with comments | « Source/core/svg/SVGFESpecularLightingElement.cpp ('k') | Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698