Index: Source/core/animation/InterpolationEffectTest.cpp |
diff --git a/Source/core/animation/InterpolationEffectTest.cpp b/Source/core/animation/InterpolationEffectTest.cpp |
index e13ef629e6662f5d751a7489e9800b6e3e6f24d9..093ce23e74a0e14aa863ac25138d0bbb3135ed6f 100644 |
--- a/Source/core/animation/InterpolationEffectTest.cpp |
+++ b/Source/core/animation/InterpolationEffectTest.cpp |
@@ -34,7 +34,7 @@ TEST_F(AnimationInterpolationEffectTest, SingleInterpolation) |
interpolationEffect->addInterpolation(Interpolation::create(InterpolableNumber::create(0), InterpolableNumber::create(10)), |
RefPtr<TimingFunction>(), 0, 1, -1, 2); |
- OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > activeInterpolations = nullptr; |
+ OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>> activeInterpolations = nullptr; |
interpolationEffect->getActiveInterpolations(-2, duration, activeInterpolations); |
EXPECT_EQ(0ul, activeInterpolations->size()); |
@@ -64,7 +64,7 @@ TEST_F(AnimationInterpolationEffectTest, MultipleInterpolations) |
interpolationEffect->addInterpolation(Interpolation::create(InterpolableNumber::create(1), InterpolableNumber::create(6)), |
CubicBezierTimingFunction::preset(CubicBezierTimingFunction::Ease), 0.5, 1.5, 0.5, 1.5); |
- OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > activeInterpolations = nullptr; |
+ OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>> activeInterpolations = nullptr; |
interpolationEffect->getActiveInterpolations(-0.5, duration, activeInterpolations); |
EXPECT_EQ(0ul, activeInterpolations->size()); |