| Index: third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp b/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| index f9fe68ec4eae79fbdf9f3a85f998ad2bc24b9509..e468a18921101a8708961d5eac8b53e85572057f 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| @@ -77,16 +77,16 @@ bool SVGFESpecularLightingElement::setFilterEffectAttribute(FilterEffect* effect
|
| SVGFELightElement* lightElement = SVGFELightElement::findLightElement(*this);
|
| ASSERT(lightSource);
|
| ASSERT(lightElement);
|
| - ASSERT(effect->filter());
|
| + ASSERT(effect->getFilter());
|
|
|
| if (attrName == SVGNames::azimuthAttr)
|
| return lightSource->setAzimuth(lightElement->azimuth()->currentValue()->value());
|
| if (attrName == SVGNames::elevationAttr)
|
| return lightSource->setElevation(lightElement->elevation()->currentValue()->value());
|
| if (attrName == SVGNames::xAttr || attrName == SVGNames::yAttr || attrName == SVGNames::zAttr)
|
| - return lightSource->setPosition(effect->filter()->resolve3dPoint(lightElement->position()));
|
| + return lightSource->setPosition(effect->getFilter()->resolve3dPoint(lightElement->position()));
|
| if (attrName == SVGNames::pointsAtXAttr || attrName == SVGNames::pointsAtYAttr || attrName == SVGNames::pointsAtZAttr)
|
| - return lightSource->setPointsAt(effect->filter()->resolve3dPoint(lightElement->pointsAt()));
|
| + return lightSource->setPointsAt(effect->getFilter()->resolve3dPoint(lightElement->pointsAt()));
|
| if (attrName == SVGNames::specularExponentAttr)
|
| return lightSource->setSpecularExponent(lightElement->specularExponent()->currentValue()->value());
|
| if (attrName == SVGNames::limitingConeAngleAttr)
|
|
|