Index: third_party/WebKit/Source/core/animation/StringKeyframe.cpp |
diff --git a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp |
index 071b376c1c01da75eefdba2090f1d339d21f7208..f62b57f8522f0b02a24ec1a426643eebe2ee0fd6 100644 |
--- a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp |
+++ b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp |
@@ -13,7 +13,6 @@ |
#include "core/animation/InvalidatableInterpolation.h" |
#include "core/animation/LegacyStyleInterpolation.h" |
#include "core/animation/LengthBoxStyleInterpolation.h" |
-#include "core/animation/LengthPairStyleInterpolation.h" |
#include "core/animation/LengthStyleInterpolation.h" |
#include "core/animation/ListStyleInterpolation.h" |
#include "core/animation/PropertyInterpolationTypesMapping.h" |
@@ -194,14 +193,6 @@ PassRefPtr<Interpolation> StringKeyframe::CSSPropertySpecificKeyframe::maybeCrea |
break; |
} |
- case CSSPropertyBorderBottomLeftRadius: |
- case CSSPropertyBorderBottomRightRadius: |
- case CSSPropertyBorderTopLeftRadius: |
- case CSSPropertyBorderTopRightRadius: |
- if (LengthPairStyleInterpolation::canCreateFrom(*fromCSSValue) && LengthPairStyleInterpolation::canCreateFrom(*toCSSValue)) |
- return LengthPairStyleInterpolation::create(*fromCSSValue, *toCSSValue, property, RangeNonNegative); |
- break; |
- |
case CSSPropertyTransformOrigin: { |
RefPtr<Interpolation> interpolation = ListStyleInterpolation<LengthStyleInterpolation>::maybeCreateFromList(*fromCSSValue, *toCSSValue, property, range); |
if (interpolation) |