Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1028)

Unified Diff: third_party/WebKit/Source/core/animation/AnimationTest.cpp

Issue 2384263003: Reflow comments in core/animation and subdirs (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());

Powered by Google App Engine
This is Rietveld 408576698