| Index: third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp b/third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp
|
| index 82df55403cd4d1b5e3f6135f2d5ca6bbe7ebbc1a..7293c5e2458b19522215653bf34ee9c069abeb0b 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/SourceGraphic.cpp
|
| @@ -37,9 +37,9 @@ SourceGraphic::~SourceGraphic()
|
| {
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SourceGraphic> SourceGraphic::create(Filter* filter)
|
| +RawPtr<SourceGraphic> SourceGraphic::create(Filter* filter)
|
| {
|
| - return adoptRefWillBeNoop(new SourceGraphic(filter));
|
| + return new SourceGraphic(filter);
|
| }
|
|
|
| FloatRect SourceGraphic::determineAbsolutePaintRect(const FloatRect& requestedRect)
|
|
|