| Index: third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h b/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h
|
| index 673fae41837e936c8607f77290bc543746b01de6..0b75562f50dab713ea202100fe873a5dbcbb95aa 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h
|
| @@ -28,7 +28,7 @@ public:
|
| bool flattensInheritedTransform = false,
|
| unsigned renderingContextID = 0)
|
| {
|
| - return adoptRef(new TransformPaintPropertyNode(matrix, origin, parent, flattensInheritedTransform, renderingContextID));
|
| + return adoptRef(new TransformPaintPropertyNode(matrix, origin, std::move(parent), flattensInheritedTransform, renderingContextID));
|
| }
|
|
|
| void update(PassRefPtr<const TransformPaintPropertyNode> parent, const TransformationMatrix& matrix, const FloatPoint3D& origin, bool flattensInheritedTransform = false, unsigned renderingContextID = 0)
|
|
|