| Index: third_party/WebKit/Source/core/animation/AnimationTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/AnimationTest.cpp b/third_party/WebKit/Source/core/animation/AnimationTest.cpp
|
| index 7b70b532a52305fec60572d4d4d58ef4e01355fb..87c5da631ac137f0b8345247185dc9a3c981ec38 100644
|
| --- a/third_party/WebKit/Source/core/animation/AnimationTest.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/AnimationTest.cpp
|
| @@ -74,7 +74,8 @@ class AnimationAnimationTest : public ::testing::Test {
|
| bool simulateFrame(double time) {
|
| document->animationClock().updateTime(time);
|
| document->compositorPendingAnimations().update(false);
|
| - // The timeline does not know about our animation, so we have to explicitly call update().
|
| + // The timeline does not know about our animation, so we have to explicitly
|
| + // call update().
|
| return animation->update(TimingUpdateForAnimationFrame);
|
| }
|
|
|
| @@ -109,8 +110,8 @@ TEST_F(AnimationAnimationTest, CurrentTimeDoesNotSetOutdated) {
|
| EXPECT_EQ(0, animation->currentTimeInternal());
|
| EXPECT_FALSE(animation->outdated());
|
| // FIXME: We should split simulateFrame into a version that doesn't update
|
| - // the animation and one that does, as most of the tests don't require update()
|
| - // to be called.
|
| + // the animation and one that does, as most of the tests don't require
|
| + // update() to be called.
|
| document->animationClock().updateTime(10);
|
| EXPECT_EQ(10, animation->currentTimeInternal());
|
| EXPECT_FALSE(animation->outdated());
|
|
|