| Index: Source/core/animation/animatable/AnimatableValueTestHelper.cpp
|
| diff --git a/Source/core/animation/animatable/AnimatableValueTestHelper.cpp b/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
|
| index add8e2419bfb44237f80ea862b7a19965f57b265..d79c3976073e150e08624a6a8c6262c6ce51d4dd 100644
|
| --- a/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
|
| +++ b/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
|
| @@ -53,7 +53,7 @@ void PrintTo(const AnimatableColor& animColor, ::std::ostream* os)
|
|
|
| void PrintTo(const AnimatableImage& animImage, ::std::ostream* os)
|
| {
|
| - PrintTo(*(animImage.toCSSValue()), os, "AnimatableImage");
|
| + PrintTo(animImage.toCSSValue(), os, "AnimatableImage");
|
| }
|
|
|
| void PrintTo(const AnimatableNeutral& animValue, ::std::ostream* os)
|
| @@ -148,7 +148,7 @@ void PrintTo(const AnimatableTransform& animTransform, ::std::ostream* os)
|
|
|
| void PrintTo(const AnimatableUnknown& animUnknown, ::std::ostream* os)
|
| {
|
| - PrintTo(*(animUnknown.toCSSValue().get()), os, "AnimatableUnknown");
|
| + PrintTo(animUnknown.toCSSValue(), os, "AnimatableUnknown");
|
| }
|
|
|
| void PrintTo(const AnimatableVisibility& animVisibility, ::std::ostream* os)
|
|
|