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

Unified Diff: Source/core/rendering/RenderProgress.cpp

Issue 189833009: Trace where timers were scheduled in Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated 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
« no previous file with comments | « Source/core/rendering/RenderMarquee.cpp ('k') | Source/core/rendering/RenderText.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderProgress.cpp
diff --git a/Source/core/rendering/RenderProgress.cpp b/Source/core/rendering/RenderProgress.cpp
index c44ce5c6bfb99e3e6c52644ea6cbbdcbdd401887..1a90942ec663857d7c7f170f73a4592b01a91107 100644
--- a/Source/core/rendering/RenderProgress.cpp
+++ b/Source/core/rendering/RenderProgress.cpp
@@ -73,7 +73,7 @@ void RenderProgress::animationTimerFired(Timer<RenderProgress>*)
{
repaint();
if (!m_animationTimer.isActive() && m_animating)
- m_animationTimer.startOneShot(m_animationRepeatInterval);
+ m_animationTimer.startOneShot(m_animationRepeatInterval, FROM_HERE);
}
void RenderProgress::updateAnimationState()
@@ -88,7 +88,7 @@ void RenderProgress::updateAnimationState()
m_animating = animating;
if (m_animating) {
m_animationStartTime = currentTime();
- m_animationTimer.startOneShot(m_animationRepeatInterval);
+ m_animationTimer.startOneShot(m_animationRepeatInterval, FROM_HERE);
} else
m_animationTimer.stop();
}
« no previous file with comments | « Source/core/rendering/RenderMarquee.cpp ('k') | Source/core/rendering/RenderText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698