| Index: third_party/WebKit/Source/core/svg/SVGFEOffsetElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFEOffsetElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEOffsetElement.cpp
|
| index 3c68a29c1740895ba96590a34d74f8f0d0a683d2..5f0e11c410e2754b5aca88f2b06e2bcb0485f26f 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFEOffsetElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFEOffsetElement.cpp
|
| @@ -68,7 +68,7 @@ FilterEffect* SVGFEOffsetElement::build(SVGFilterBuilder* filterBuilder,
|
|
|
| FilterEffect* effect = FEOffset::create(filter, m_dx->currentValue()->value(),
|
| m_dy->currentValue()->value());
|
| - effect->inputEffects().append(input1);
|
| + effect->inputEffects().push_back(input1);
|
| return effect;
|
| }
|
|
|
|
|