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

Unified Diff: Source/core/layout/svg/ReferenceFilterBuilder.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
Index: Source/core/layout/svg/ReferenceFilterBuilder.cpp
diff --git a/Source/core/layout/svg/ReferenceFilterBuilder.cpp b/Source/core/layout/svg/ReferenceFilterBuilder.cpp
index cce6b03292f8b7b3877d42762438a0743a7f20b9..e2964aeee613cb747cbb2c1888f06e46f047bcee 100644
--- a/Source/core/layout/svg/ReferenceFilterBuilder.cpp
+++ b/Source/core/layout/svg/ReferenceFilterBuilder.cpp
@@ -75,8 +75,8 @@ static bool getSVGElementColorSpace(SVGElement* svgElement, ColorSpace& cs)
return false;
const LayoutObject* layoutObject = svgElement->layoutObject();
- const LayoutStyle* style = layoutObject ? layoutObject->style() : 0;
- const SVGLayoutStyle* svgStyle = style ? &style->svgStyle() : 0;
+ const ComputedStyle* style = layoutObject ? layoutObject->style() : 0;
+ const SVGComputedStyle* svgStyle = style ? &style->svgStyle() : 0;
EColorInterpolation eColorInterpolation = CI_AUTO;
if (svgStyle) {
// If a layout has been performed, then we can use the fast path to get this attribute
« no previous file with comments | « Source/core/layout/svg/LayoutSVGTransformableContainer.cpp ('k') | Source/core/layout/svg/SVGLayoutSupport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698