| 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();
|
| }
|
|
|