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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutProgress.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/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();
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/ImageQualityController.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698