Index: Source/core/svg/SVGFEDropShadowElement.cpp |
diff --git a/Source/core/svg/SVGFEDropShadowElement.cpp b/Source/core/svg/SVGFEDropShadowElement.cpp |
index 2a2a03760d396da14a9dfe77ea9d80d2caae55bb..ff6b6bc20d8d2c1a3341cd37f0e231c4b57e5a10 100644 |
--- a/Source/core/svg/SVGFEDropShadowElement.cpp |
+++ b/Source/core/svg/SVGFEDropShadowElement.cpp |
@@ -22,8 +22,8 @@ |
#include "core/SVGNames.h" |
#include "core/layout/LayoutObject.h" |
-#include "core/layout/style/LayoutStyle.h" |
-#include "core/layout/style/SVGLayoutStyle.h" |
+#include "core/layout/style/ComputedStyle.h" |
+#include "core/layout/style/SVGComputedStyle.h" |
#include "core/svg/SVGParserUtilities.h" |
#include "core/svg/graphics/filters/SVGFilterBuilder.h" |
@@ -102,7 +102,7 @@ PassRefPtrWillBeRawPtr<FilterEffect> SVGFEDropShadowElement::build(SVGFilterBuil |
return nullptr; |
ASSERT(renderer->style()); |
- const SVGLayoutStyle& svgStyle = renderer->style()->svgStyle(); |
+ const SVGComputedStyle& svgStyle = renderer->style()->svgStyle(); |
Color color = svgStyle.floodColor(); |
float opacity = svgStyle.floodOpacity(); |