| Index: third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.h b/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.h
|
| index 9aafaea16f8000c57ea88cd1ad1d164736b30e03..8cfa13c5e1303a7ec3455f6d782ab154cfb54552 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.h
|
| @@ -21,7 +21,7 @@ class PLATFORM_EXPORT EffectPaintPropertyNode : public RefCounted<EffectPaintPro
|
| public:
|
| static PassRefPtr<EffectPaintPropertyNode> create(PassRefPtr<const EffectPaintPropertyNode> parent, float opacity)
|
| {
|
| - return adoptRef(new EffectPaintPropertyNode(parent, opacity));
|
| + return adoptRef(new EffectPaintPropertyNode(std::move(parent), opacity));
|
| }
|
|
|
| void update(PassRefPtr<const EffectPaintPropertyNode> parent, float opacity)
|
|
|