| Index: third_party/WebKit/Source/core/animation/BasicShapePropertyFunctions.h
|
| diff --git a/third_party/WebKit/Source/core/animation/BasicShapePropertyFunctions.h b/third_party/WebKit/Source/core/animation/BasicShapePropertyFunctions.h
|
| index 22b5f864f1819e29483ef471dda950a21876bb5d..294bf6c02751d232ff95e926a7762e96d96f2ede 100644
|
| --- a/third_party/WebKit/Source/core/animation/BasicShapePropertyFunctions.h
|
| +++ b/third_party/WebKit/Source/core/animation/BasicShapePropertyFunctions.h
|
| @@ -49,10 +49,10 @@ public:
|
| {
|
| switch (property) {
|
| case CSSPropertyShapeOutside:
|
| - style.setShapeOutside(ShapeValue::createShapeValue(shape, BoxMissing));
|
| + style.setShapeOutside(ShapeValue::createShapeValue(std::move(shape), BoxMissing));
|
| break;
|
| case CSSPropertyWebkitClipPath:
|
| - style.setClipPath(ShapeClipPathOperation::create(shape));
|
| + style.setClipPath(ShapeClipPathOperation::create(std::move(shape)));
|
| break;
|
| default:
|
| NOTREACHED();
|
|
|