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

Unified Diff: Source/core/svg/SVGGElement.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/SVGForeignObjectElement.cpp ('k') | Source/core/svg/SVGGradientElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGGElement.cpp
diff --git a/Source/core/svg/SVGGElement.cpp b/Source/core/svg/SVGGElement.cpp
index a4fb2219a7284e86867ea4164e9e1dff2041de0e..9138fccde9b179bb1d4d2df93714b928b62323fc 100644
--- a/Source/core/svg/SVGGElement.cpp
+++ b/Source/core/svg/SVGGElement.cpp
@@ -37,8 +37,8 @@ DEFINE_NODE_FACTORY(SVGGElement)
LayoutObject* SVGGElement::createLayoutObject(const ComputedStyle& style)
{
// SVG 1.1 testsuite explicitely uses constructs like <g display="none"><linearGradient>
- // We still have to create renderers for the <g> & <linearGradient> element, though the
- // subtree may be hidden - we only want the resource renderers to exist so they can be
+ // We still have to create layoutObjects for the <g> & <linearGradient> element, though the
+ // subtree may be hidden - we only want the resource layoutObjects to exist so they can be
// referenced from somewhere else.
if (style.display() == NONE)
return new LayoutSVGHiddenContainer(this);
@@ -48,7 +48,7 @@ LayoutObject* SVGGElement::createLayoutObject(const ComputedStyle& style)
bool SVGGElement::layoutObjectIsNeeded(const ComputedStyle&)
{
- // Unlike SVGElement::layoutObjectIsNeeded(), we still create renderers, even if
+ // Unlike SVGElement::layoutObjectIsNeeded(), we still create layoutObjects, even if
// display is set to 'none' - which is special to SVG <g> container elements.
return parentOrShadowHostElement() && parentOrShadowHostElement()->isSVGElement();
}
« no previous file with comments | « Source/core/svg/SVGForeignObjectElement.cpp ('k') | Source/core/svg/SVGGradientElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698