Index: Source/core/animation/ListStyleInterpolationTest.cpp |
diff --git a/Source/core/animation/ListStyleInterpolationTest.cpp b/Source/core/animation/ListStyleInterpolationTest.cpp |
index 357e1c79463941be43be3b18c36b5a87271edae5..9f445bba5b0a9e16697bdcca5100ea94c069057a 100644 |
--- a/Source/core/animation/ListStyleInterpolationTest.cpp |
+++ b/Source/core/animation/ListStyleInterpolationTest.cpp |
@@ -18,7 +18,7 @@ protected: |
static PassRefPtrWillBeRawPtr<CSSValue> lengthRoundTrip(PassRefPtrWillBeRawPtr<CSSValue> value, InterpolationRange range) |
{ |
return ListStyleInterpolationImpl<LengthStyleInterpolation, void>::interpolableValueToList( |
- ListStyleInterpolationImpl<LengthStyleInterpolation, void>::listToInterpolableValue(*value).get(), range); |
+ ListStyleInterpolationImpl<LengthStyleInterpolation, void>::listToInterpolableValue(*value), range); |
} |
static void compareLengthLists(PassRefPtrWillBeRawPtr<CSSValueList> expectedList, PassRefPtrWillBeRawPtr<CSSValue> actualList) |
@@ -40,7 +40,7 @@ protected: |
{ |
Vector<bool> nonInterpolableData; |
return ListStyleInterpolationImpl<ShadowStyleInterpolation, bool>::interpolableValueToList( |
- ListStyleInterpolationImpl<ShadowStyleInterpolation, bool>::listToInterpolableValue(*value, &nonInterpolableData).get(), nonInterpolableData); |
+ ListStyleInterpolationImpl<ShadowStyleInterpolation, bool>::listToInterpolableValue(*value, &nonInterpolableData), nonInterpolableData); |
} |
static RefPtrWillBeRawPtr<CSSShadowValue> createShadowValue() |