| Index: third_party/WebKit/Source/core/svg/SVGFEDropShadowElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFEDropShadowElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEDropShadowElement.cpp
|
| index 0fbdc436cf166008c65be9248d09e4915dfa49c3..e191ded46fac0b9a3939dbbfcbf37bd414e7770b 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFEDropShadowElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFEDropShadowElement.cpp
|
| @@ -117,7 +117,7 @@ FilterEffect* SVGFEDropShadowElement::build(SVGFilterBuilder* filterBuilder,
|
| FilterEffect* effect = FEDropShadow::create(
|
| filter, stdDevX, stdDevY, m_dx->currentValue()->value(),
|
| m_dy->currentValue()->value(), color, opacity);
|
| - effect->inputEffects().append(input1);
|
| + effect->inputEffects().push_back(input1);
|
| return effect;
|
| }
|
|
|
|
|