| Index: third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp b/third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp
|
| index 7c305b5e14dd409e18266bf89e41f733e2e8f9fc..f64758c6028db0ec7ca8b3aac4eb525ea6c49965 100644
|
| --- a/third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp
|
| @@ -28,8 +28,9 @@ void UnderlyingValueOwner::set(const InterpolationType& type,
|
| const InterpolationValue& value) {
|
| DCHECK(value);
|
| m_type = &type;
|
| - // By clearing m_valueOwner we will perform a copy before attempting to mutate m_value,
|
| - // thus upholding the const contract for this instance of interpolationValue.
|
| + // By clearing m_valueOwner we will perform a copy before attempting to mutate
|
| + // m_value, thus upholding the const contract for this instance of
|
| + // interpolationValue.
|
| m_valueOwner.clear();
|
| m_value = &value;
|
| }
|
|
|