| Index: third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
|
| index e084904cd2ef1edabd9b2610034fc2d3579bdaf7..788e9b8190a95f0099aa718dd5c8417727433c5a 100644
|
| --- a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
|
| @@ -280,7 +280,8 @@ bool KeyframeEffectReadOnly::MaybeStartAnimationOnCompositor(
|
| int group,
|
| double start_time,
|
| double current_time,
|
| - double animation_playback_rate) {
|
| + double animation_playback_rate,
|
| + CompositorAnimationPlayer* compositor_player) {
|
| DCHECK(!HasActiveAnimationsOnCompositor());
|
| if (!IsCandidateForAnimationOnCompositor(animation_playback_rate))
|
| return false;
|
| @@ -288,7 +289,7 @@ bool KeyframeEffectReadOnly::MaybeStartAnimationOnCompositor(
|
| return false;
|
| CompositorAnimations::StartAnimationOnCompositor(
|
| *target_, group, start_time, current_time, SpecifiedTiming(),
|
| - *GetAnimation(), *Model(), compositor_animation_ids_,
|
| + GetAnimation(), compositor_player, *Model(), compositor_animation_ids_,
|
| animation_playback_rate);
|
| DCHECK(!compositor_animation_ids_.IsEmpty());
|
| return true;
|
|
|