| Index: third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp
|
| index 92c8ee0e6f3d55d319d0629f6a3a7cc3db787228..64caf31630c00ccf725feabf089b917cba8805ef 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp
|
| @@ -179,7 +179,8 @@ class SVGTransformListChecker : public InterpolationType::ConversionChecker {
|
|
|
| bool isValid(const InterpolationEnvironment&,
|
| const InterpolationValue& underlying) const final {
|
| - // TODO(suzyh): change maybeConvertSingle so we don't have to recalculate for changes to the interpolable values
|
| + // TODO(suzyh): change maybeConvertSingle so we don't have to recalculate
|
| + // for changes to the interpolable values
|
| if (!underlying && !m_underlying)
|
| return true;
|
| if (!underlying || !m_underlying)
|
| @@ -202,7 +203,8 @@ InterpolationValue SVGTransformListInterpolationType::maybeConvertNeutral(
|
| const InterpolationValue&,
|
| ConversionCheckers&) const {
|
| NOTREACHED();
|
| - // This function is no longer called, because maybeConvertSingle has been overridden.
|
| + // This function is no longer called, because maybeConvertSingle has been
|
| + // overridden.
|
| return nullptr;
|
| }
|
|
|
|
|