| Index: third_party/WebKit/Source/core/svg/SVGFETileElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFETileElement.cpp b/third_party/WebKit/Source/core/svg/SVGFETileElement.cpp
|
| index 86581b909fe4a607a33912d0f6db27e26590c4c0..71d8ae03a565f73c72fc8746a4433a3455900476 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFETileElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFETileElement.cpp
|
| @@ -56,7 +56,7 @@ FilterEffect* SVGFETileElement::build(SVGFilterBuilder* filterBuilder,
|
| ASSERT(input1);
|
|
|
| FilterEffect* effect = FETile::create(filter);
|
| - effect->inputEffects().append(input1);
|
| + effect->inputEffects().push_back(input1);
|
| return effect;
|
| }
|
|
|
|
|