X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fsvg%2FSVGFEDropShadowElement.cpp;h=f4c0898885dad875697279b41adc5fcd669123f3;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=58c7e00bbfff3bee72edf8416477f155963d0cef;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/svg/SVGFEDropShadowElement.cpp b/src/third_party/WebKit/Source/core/svg/SVGFEDropShadowElement.cpp index 58c7e00..f4c0898 100644 --- a/src/third_party/WebKit/Source/core/svg/SVGFEDropShadowElement.cpp +++ b/src/third_party/WebKit/Source/core/svg/SVGFEDropShadowElement.cpp @@ -27,7 +27,7 @@ #include "core/svg/SVGParserUtilities.h" #include "core/svg/graphics/filters/SVGFilterBuilder.h" -namespace WebCore { +namespace blink { inline SVGFEDropShadowElement::SVGFEDropShadowElement(Document& document) : SVGFilterPrimitiveStandardAttributes(SVGNames::feDropShadowTag, document) @@ -118,10 +118,10 @@ PassRefPtr SVGFEDropShadowElement::build(SVGFilterBuilder* filterB return nullptr; ASSERT(renderer->style()); - const SVGRenderStyle* svgStyle = renderer->style()->svgStyle(); + const SVGRenderStyle& svgStyle = renderer->style()->svgStyle(); - Color color = svgStyle->floodColor(); - float opacity = svgStyle->floodOpacity(); + Color color = svgStyle.floodColor(); + float opacity = svgStyle.floodOpacity(); FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value())); if (!input1)