| Index: Source/platform/graphics/filters/FEColorMatrix.cpp
|
| diff --git a/Source/platform/graphics/filters/FEColorMatrix.cpp b/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| index 8b71bb3f2da4763920e10bf054f6bcd3722833be..75c66bafa9cf21c24e5577b6f9186708530c89a6 100644
|
| --- a/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| +++ b/Source/platform/graphics/filters/FEColorMatrix.cpp
|
| @@ -38,9 +38,9 @@ FEColorMatrix::FEColorMatrix(Filter* filter, ColorMatrixType type, const Vector<
|
| {
|
| }
|
|
|
| -PassRefPtr<FEColorMatrix> FEColorMatrix::create(Filter* filter, ColorMatrixType type, const Vector<float>& values)
|
| +PassRefPtrWillBeRawPtr<FEColorMatrix> FEColorMatrix::create(Filter* filter, ColorMatrixType type, const Vector<float>& values)
|
| {
|
| - return adoptRef(new FEColorMatrix(filter, type, values));
|
| + return adoptRefWillBeNoop(new FEColorMatrix(filter, type, values));
|
| }
|
|
|
| ColorMatrixType FEColorMatrix::type() const
|
|
|