| Index: third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| index a66f431ae397f6fcf92252cd439fd64584ab86d2..6686095f97acace5a6c428e6206d46047225e7f0 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| @@ -29,7 +29,8 @@ class UnderlyingCompatibilityChecker
|
| private:
|
| UnderlyingCompatibilityChecker(
|
| PassRefPtr<NonInterpolableValue> underlyingNonInterpolableValue)
|
| - : m_underlyingNonInterpolableValue(underlyingNonInterpolableValue) {}
|
| + : m_underlyingNonInterpolableValue(
|
| + std::move(underlyingNonInterpolableValue)) {}
|
|
|
| bool isValid(const InterpolationEnvironment&,
|
| const InterpolationValue& underlying) const final {
|
| @@ -52,7 +53,7 @@ class InheritedShapeChecker : public InterpolationType::ConversionChecker {
|
| private:
|
| InheritedShapeChecker(CSSPropertyID property,
|
| PassRefPtr<BasicShape> inheritedShape)
|
| - : m_property(property), m_inheritedShape(inheritedShape) {}
|
| + : m_property(property), m_inheritedShape(std::move(inheritedShape)) {}
|
|
|
| bool isValid(const InterpolationEnvironment& environment,
|
| const InterpolationValue&) const final {
|
|
|