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

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

Issue 977113003: Rename renderer() to layoutObject(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/SVGFEImageElement.cpp ('k') | Source/core/svg/SVGFESpecularLightingElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFELightElement.cpp
diff --git a/Source/core/svg/SVGFELightElement.cpp b/Source/core/svg/SVGFELightElement.cpp
index db201ccfc6264f17a8ec64eabd0ac4a86d3fdba3..ba54f6bf1118c3e6834a0b50f63b57c3c1ceab1a 100644
--- a/Source/core/svg/SVGFELightElement.cpp
+++ b/Source/core/svg/SVGFELightElement.cpp
@@ -131,7 +131,7 @@ void SVGFELightElement::svgAttributeChanged(const QualifiedName& attrName)
if (!parent)
return;
- LayoutObject* renderer = parent->renderer();
+ LayoutObject* renderer = parent->layoutObject();
if (!renderer || !renderer->isSVGResourceFilterPrimitive())
return;
@@ -154,7 +154,7 @@ void SVGFELightElement::childrenChanged(const ChildrenChange& change)
if (!change.byParser) {
if (ContainerNode* parent = parentNode()) {
- LayoutObject* renderer = parent->renderer();
+ LayoutObject* renderer = parent->layoutObject();
if (renderer && renderer->isSVGResourceFilterPrimitive())
markForLayoutAndParentResourceInvalidation(renderer);
}
« no previous file with comments | « Source/core/svg/SVGFEImageElement.cpp ('k') | Source/core/svg/SVGFESpecularLightingElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698