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

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

Issue 2948193002: Merge AnimationTimeline and DocumentTimeline (Closed)
Patch Set: Fix rebase error Created 3 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 e441f72838a4c9c3320bd54da13fb90891e18e33..6171a36de27e24f18b96ff6eb35afa1b46c8ac33 100644
--- a/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
+++ b/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
@@ -256,10 +256,10 @@ void SMILTimeContainer::ScheduleAnimationFrame(double delay_time) {
DCHECK(IsTimelineRunning());
DCHECK(!wakeup_timer_.IsActive());
- if (delay_time < AnimationTimeline::kMinimumDelay) {
+ if (delay_time < DocumentTimeline::kMinimumDelay) {
ServiceOnNextFrame();
} else {
- ScheduleWakeUp(delay_time - AnimationTimeline::kMinimumDelay,
+ ScheduleWakeUp(delay_time - DocumentTimeline::kMinimumDelay,
kFutureAnimationFrame);
}
}
« no previous file with comments | « third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698