| Index: third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h b/third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h
|
| index e340e2b71d1650d8f5e37bbd937337ac0c686ae6..a4e1ebe34018e91da68094cd3bf4ca58f8deadcc 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h
|
| @@ -26,7 +26,7 @@ public:
|
| PassRefPtr<const TransformPaintPropertyNode> localTransformSpace,
|
| const FloatRoundedRect& clipRect)
|
| {
|
| - return adoptRef(new ClipPaintPropertyNode(parent, localTransformSpace, clipRect));
|
| + return adoptRef(new ClipPaintPropertyNode(std::move(parent), std::move(localTransformSpace), clipRect));
|
| }
|
|
|
| void update(PassRefPtr<const ClipPaintPropertyNode> parent, PassRefPtr<const TransformPaintPropertyNode> localTransformSpace, const FloatRoundedRect& clipRect)
|
|
|