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

Unified Diff: Source/core/animation/DocumentTimeline.cpp

Issue 189833009: Trace where timers were scheduled in Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/core/animation/DocumentTimeline.cpp
diff --git a/Source/core/animation/DocumentTimeline.cpp b/Source/core/animation/DocumentTimeline.cpp
index 681d9ff382aa2d6f257a5958c0294b4e5f8780cf..908563df8a5d1fb699f6171b143d556cdbbd4465 100644
--- a/Source/core/animation/DocumentTimeline.cpp
+++ b/Source/core/animation/DocumentTimeline.cpp
@@ -124,7 +124,7 @@ void DocumentTimeline::setZeroTime(double zeroTime)
void DocumentTimeline::DocumentTimelineTiming::wakeAfter(double duration)
{
- m_timer.startOneShot(duration);
+ m_timer.startOneShot(duration, FROM_HERE);
}
void DocumentTimeline::DocumentTimelineTiming::cancelWake()

Powered by Google App Engine
This is Rietveld 408576698