| 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);
|
| }
|
| }
|
|
|