| Index: cc/trees/layer_tree_host.cc
|
| diff --git a/cc/trees/layer_tree_host.cc b/cc/trees/layer_tree_host.cc
|
| index 5972a9f8303986a65849be5b35357767753d8066..17199cfe83b514c042602f13a26d6954c5a6af6d 100644
|
| --- a/cc/trees/layer_tree_host.cc
|
| +++ b/cc/trees/layer_tree_host.cc
|
| @@ -577,13 +577,11 @@ void LayerTreeHost::SetAnimationEvents(scoped_ptr<AnimationEventsVector> events,
|
| if (iter != animation_controllers.end()) {
|
| switch ((*events)[event_index].type) {
|
| case AnimationEvent::Started:
|
| - (*iter).second->NotifyAnimationStarted((*events)[event_index],
|
| - wall_clock_time.ToDoubleT());
|
| + (*iter).second->NotifyAnimationStarted((*events)[event_index]);
|
| break;
|
|
|
| case AnimationEvent::Finished:
|
| - (*iter).second->NotifyAnimationFinished((*events)[event_index],
|
| - wall_clock_time.ToDoubleT());
|
| + (*iter).second->NotifyAnimationFinished((*events)[event_index]);
|
| break;
|
|
|
| case AnimationEvent::Aborted:
|
|
|