| Index: third_party/WebKit/Source/core/animation/InterpolationEffect.h
|
| diff --git a/third_party/WebKit/Source/core/animation/InterpolationEffect.h b/third_party/WebKit/Source/core/animation/InterpolationEffect.h
|
| index dfb926b10eaacad8a2cc8f1d63c0a7789f81f4cb..effe682ae25e4f5d324ec2a50828c1511aa680db 100644
|
| --- a/third_party/WebKit/Source/core/animation/InterpolationEffect.h
|
| +++ b/third_party/WebKit/Source/core/animation/InterpolationEffect.h
|
| @@ -60,8 +60,8 @@ class CORE_EXPORT InterpolationEffect {
|
| double end,
|
| double applyFrom,
|
| double applyTo)
|
| - : m_interpolation(interpolation),
|
| - m_easing(easing),
|
| + : m_interpolation(std::move(interpolation)),
|
| + m_easing(std::move(easing)),
|
| m_start(start),
|
| m_end(end),
|
| m_applyFrom(applyFrom),
|
|
|