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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp

Issue 2390773004: reflow comments in core/svg/ (Closed)
Patch Set: comments (heh!) 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/svg/graphics/SVGImageTest.cpp
diff --git a/third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp b/third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp
index b94ac85d4f2e7b86d7b9d3f541744b9fe28311bd..9ac7b526814cb3265ac96b8b050a33221939d986 100644
--- a/third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp
+++ b/third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp
@@ -95,7 +95,8 @@ TEST_F(SVGImageTest, TimelineSuspendAndResume) {
// Fire the timer/trigger a frame update. Since the observer always returns
// true for shouldPauseAnimation, this will result in the timeline being
// suspended.
- // TODO(alexclarke): Move over to using base::TimeDelta and base::TimeTicks so we can avoid computations like this.
+ // TODO(alexclarke): Move over to using base::TimeDelta and base::TimeTicks so
+ // we can avoid computations like this.
testing::runDelayedTasks(1.0 + timer->nextFireInterval() * 1000.0);
EXPECT_TRUE(chromeClient.isSuspended());
EXPECT_FALSE(timer->isActive());
@@ -127,7 +128,8 @@ TEST_F(SVGImageTest, ResetAnimation) {
// Fire the timer/trigger a frame update. The timeline will remain
// suspended and no frame will be scheduled.
- // TODO(alexclarke): Move over to using base::TimeDelta and base::TimeTicks so we can avoid computations like this.
+ // TODO(alexclarke): Move over to using base::TimeDelta and base::TimeTicks so
+ // we can avoid computations like this.
testing::runDelayedTasks(1.0 + timer->nextFireInterval() * 1000.0);
EXPECT_TRUE(chromeClient.isSuspended());
EXPECT_FALSE(timer->isActive());

Powered by Google App Engine
This is Rietveld 408576698