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

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

Issue 1362973004: Rename FROM_HERE to BLINK_FROM_HERE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 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/animation/SMILTimeContainer.cpp
diff --git a/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp b/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
index 2d6b3a156e7676c86d40686e58dc573f6a9a8e3f..34072b0400e7600cdea08ea1c0b11753e2de254a 100644
--- a/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
+++ b/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
@@ -301,7 +301,7 @@ void SMILTimeContainer::cancelAnimationFrame()
void SMILTimeContainer::scheduleWakeUp(double delayTime, FrameSchedulingState frameSchedulingState)
{
ASSERT(frameSchedulingState == SynchronizeAnimations || frameSchedulingState == FutureAnimationFrame);
- m_wakeupTimer.startOneShot(delayTime, FROM_HERE);
+ m_wakeupTimer.startOneShot(delayTime, BLINK_FROM_HERE);
m_frameSchedulingState = frameSchedulingState;
}
@@ -320,7 +320,7 @@ void SMILTimeContainer::wakeupTimerFired(Timer<SMILTimeContainer>*)
void SMILTimeContainer::scheduleAnimationPolicyTimer()
{
- m_animationPolicyOnceTimer.startOneShot(animationPolicyOnceDuration, FROM_HERE);
+ m_animationPolicyOnceTimer.startOneShot(animationPolicyOnceDuration, BLINK_FROM_HERE);
}
void SMILTimeContainer::cancelAnimationPolicyTimer()

Powered by Google App Engine
This is Rietveld 408576698