| Index: third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.cpp b/third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.cpp
|
| index 7addc0d998bdffefb847dc66cb813087b0effb76..1d7263ed68c92dd342397cd3917fce677ffbe168 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.cpp
|
| @@ -21,9 +21,9 @@ PaintFilterEffect::~PaintFilterEffect()
|
| {
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<PaintFilterEffect> PaintFilterEffect::create(Filter* filter, const SkPaint& paint)
|
| +RawPtr<PaintFilterEffect> PaintFilterEffect::create(Filter* filter, const SkPaint& paint)
|
| {
|
| - return adoptRefWillBeNoop(new PaintFilterEffect(filter, paint));
|
| + return new PaintFilterEffect(filter, paint);
|
| }
|
|
|
| PassRefPtr<SkImageFilter> PaintFilterEffect::createImageFilter(SkiaImageFilterBuilder&)
|
|
|