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

Unified Diff: Source/core/svg/animation/SMILTimeContainer.cpp

Issue 189833009: Trace where timers were scheduled in Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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: Source/core/svg/animation/SMILTimeContainer.cpp
diff --git a/Source/core/svg/animation/SMILTimeContainer.cpp b/Source/core/svg/animation/SMILTimeContainer.cpp
index c41555d4d18203e592dc1c81d5ce2f275f8c3608..575fd5e74106b121a39f7fac99ff49a4eeafdcbc 100644
--- a/Source/core/svg/animation/SMILTimeContainer.cpp
+++ b/Source/core/svg/animation/SMILTimeContainer.cpp
@@ -217,7 +217,7 @@ void SMILTimeContainer::scheduleAnimationFrame(SMILTime fireTime)
return;
SMILTime delay = max(fireTime - elapsed(), SMILTime(animationFrameDelay));
- m_timer.startOneShot(delay.value());
+ m_timer.startOneShot(delay.value(), FROM_HERE);
}
void SMILTimeContainer::scheduleAnimationFrame()
@@ -225,7 +225,7 @@ void SMILTimeContainer::scheduleAnimationFrame()
if (!isTimelineRunning())
return;
- m_timer.startOneShot(0);
+ m_timer.startOneShot(0, FROM_HERE);
}
void SMILTimeContainer::cancelAnimationFrame()

Powered by Google App Engine
This is Rietveld 408576698