Index: third_party/WebKit/Source/core/layout/LayoutProgress.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutProgress.cpp b/third_party/WebKit/Source/core/layout/LayoutProgress.cpp |
index 0849f79c61b4b6c55347f1ced36f51016d162902..cd783233fb2837d7127c26b7771ae0795f2ae482 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutProgress.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutProgress.cpp |
@@ -80,7 +80,7 @@ void LayoutProgress::animationTimerFired(Timer<LayoutProgress>*) |
{ |
setShouldDoFullPaintInvalidation(); |
if (!m_animationTimer.isActive() && m_animating) |
- m_animationTimer.startOneShot(m_animationRepeatInterval, FROM_HERE); |
+ m_animationTimer.startOneShot(m_animationRepeatInterval, BLINK_FROM_HERE); |
} |
void LayoutProgress::updateAnimationState() |
@@ -95,7 +95,7 @@ void LayoutProgress::updateAnimationState() |
m_animating = animating; |
if (m_animating) { |
m_animationStartTime = currentTime(); |
- m_animationTimer.startOneShot(m_animationRepeatInterval, FROM_HERE); |
+ m_animationTimer.startOneShot(m_animationRepeatInterval, BLINK_FROM_HERE); |
} else { |
m_animationTimer.stop(); |
} |