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

Unified Diff: Source/core/svg/SVGFilterPrimitiveStandardAttributes.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
« no previous file with comments | « Source/core/svg/SVGFilterElement.cpp ('k') | Source/core/svg/SVGForeignObjectElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp
diff --git a/Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp b/Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp
index 3f9836f0290f24381f10bfb73420e5d69aa53686..7373cdef4dd050050f26b7ed9a14c941655e4801 100644
--- a/Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp
+++ b/Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp
@@ -122,14 +122,14 @@ bool SVGFilterPrimitiveStandardAttributes::layoutObjectIsNeeded(const ComputedSt
void SVGFilterPrimitiveStandardAttributes::invalidate()
{
- if (LayoutObject* primitiveRenderer = layoutObject())
- markForLayoutAndParentResourceInvalidation(primitiveRenderer);
+ if (LayoutObject* primitiveLayoutObject = layoutObject())
+ markForLayoutAndParentResourceInvalidation(primitiveLayoutObject);
}
void SVGFilterPrimitiveStandardAttributes::primitiveAttributeChanged(const QualifiedName& attribute)
{
- if (LayoutObject* primitiveRenderer = layoutObject())
- static_cast<LayoutSVGResourceFilterPrimitive*>(primitiveRenderer)->primitiveAttributeChanged(attribute);
+ if (LayoutObject* primitiveLayoutObject = layoutObject())
+ static_cast<LayoutSVGResourceFilterPrimitive*>(primitiveLayoutObject)->primitiveAttributeChanged(attribute);
}
void invalidateFilterPrimitiveParent(SVGElement* element)
@@ -142,11 +142,11 @@ void invalidateFilterPrimitiveParent(SVGElement* element)
if (!parent)
return;
- LayoutObject* renderer = parent->layoutObject();
- if (!renderer || !renderer->isSVGResourceFilterPrimitive())
+ LayoutObject* layoutObject = parent->layoutObject();
+ if (!layoutObject || !layoutObject->isSVGResourceFilterPrimitive())
return;
- LayoutSVGResourceContainer::markForLayoutAndParentResourceInvalidation(renderer, false);
+ LayoutSVGResourceContainer::markForLayoutAndParentResourceInvalidation(layoutObject, false);
}
}
« no previous file with comments | « Source/core/svg/SVGFilterElement.cpp ('k') | Source/core/svg/SVGForeignObjectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698