| Index: cc/trees/layer_tree_host.cc
 | 
| diff --git a/cc/trees/layer_tree_host.cc b/cc/trees/layer_tree_host.cc
 | 
| index d2d5e3adba4b7e3a5cbb7c69a2b3879cbfc63940..111e393ec3b919221da397a5d4a64621c472da3e 100644
 | 
| --- a/cc/trees/layer_tree_host.cc
 | 
| +++ b/cc/trees/layer_tree_host.cc
 | 
| @@ -1134,15 +1134,13 @@ scoped_ptr<base::Value> LayerTreeHost::AsValue() const {
 | 
|    return state.PassAs<base::Value>();
 | 
|  }
 | 
|  
 | 
| -void LayerTreeHost::AnimateLayers(base::TimeTicks time) {
 | 
| +void LayerTreeHost::AnimateLayers(base::TimeTicks monotonic_time) {
 | 
|    if (!settings_.accelerated_animation_enabled ||
 | 
|        animation_registrar_->active_animation_controllers().empty())
 | 
|      return;
 | 
|  
 | 
|    TRACE_EVENT0("cc", "LayerTreeHost::AnimateLayers");
 | 
|  
 | 
| -  double monotonic_time = (time - base::TimeTicks()).InSecondsF();
 | 
| -
 | 
|    AnimationRegistrar::AnimationControllerMap copy =
 | 
|        animation_registrar_->active_animation_controllers();
 | 
|    for (AnimationRegistrar::AnimationControllerMap::iterator iter = copy.begin();
 | 
| 
 |