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

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

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle 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/SVGSVGElement.h ('k') | Source/core/svg/SVGScriptElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGSVGElement.cpp
diff --git a/Source/core/svg/SVGSVGElement.cpp b/Source/core/svg/SVGSVGElement.cpp
index 21c3bc9e62e9e14e341108061079601f663e0ac2..a498db70f4b3379acab1207f3744eb53af544696 100644
--- a/Source/core/svg/SVGSVGElement.cpp
+++ b/Source/core/svg/SVGSVGElement.cpp
@@ -528,7 +528,7 @@ AffineTransform SVGSVGElement::localCoordinateSpaceTransform(SVGElement::CTMScop
return transform.multiply(viewBoxTransform);
}
-bool SVGSVGElement::layoutObjectIsNeeded(const LayoutStyle& style)
+bool SVGSVGElement::layoutObjectIsNeeded(const ComputedStyle& style)
{
// FIXME: We should respect display: none on the documentElement svg element
// but many things in FrameView and SVGImage depend on the LayoutSVGRoot when
@@ -539,7 +539,7 @@ bool SVGSVGElement::layoutObjectIsNeeded(const LayoutStyle& style)
return Element::layoutObjectIsNeeded(style);
}
-LayoutObject* SVGSVGElement::createLayoutObject(const LayoutStyle&)
+LayoutObject* SVGSVGElement::createLayoutObject(const ComputedStyle&)
{
if (isOutermostSVGSVGElement())
return new LayoutSVGRoot(this);
« no previous file with comments | « Source/core/svg/SVGSVGElement.h ('k') | Source/core/svg/SVGScriptElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698