| Index: third_party/WebKit/Source/core/style/ShapeValue.h
|
| diff --git a/third_party/WebKit/Source/core/style/ShapeValue.h b/third_party/WebKit/Source/core/style/ShapeValue.h
|
| index 94ada72c7f74190044683385928614a7917decfd..26c0649b5f01e9478a7510140b599cd86a3bd7f2 100644
|
| --- a/third_party/WebKit/Source/core/style/ShapeValue.h
|
| +++ b/third_party/WebKit/Source/core/style/ShapeValue.h
|
| @@ -85,7 +85,7 @@ class ShapeValue final : public GarbageCollectedFinalized<ShapeValue> {
|
|
|
| private:
|
| ShapeValue(PassRefPtr<BasicShape> shape, CSSBoxType cssBox)
|
| - : m_type(Shape), m_shape(shape), m_cssBox(cssBox) {}
|
| + : m_type(Shape), m_shape(std::move(shape)), m_cssBox(cssBox) {}
|
| ShapeValue(ShapeValueType type) : m_type(type), m_cssBox(BoxMissing) {}
|
| ShapeValue(StyleImage* image)
|
| : m_type(Image), m_image(image), m_cssBox(ContentBox) {}
|
|
|