| Index: content/test/web_layer_tree_view_impl_for_testing.cc
 | 
| diff --git a/content/test/web_layer_tree_view_impl_for_testing.cc b/content/test/web_layer_tree_view_impl_for_testing.cc
 | 
| index d29e68b802a5debab3797aba80121623736c23b3..9675432f271258f63ac02526b91aec617b35d78d 100644
 | 
| --- a/content/test/web_layer_tree_view_impl_for_testing.cc
 | 
| +++ b/content/test/web_layer_tree_view_impl_for_testing.cc
 | 
| @@ -114,12 +114,19 @@ void WebLayerTreeViewImplForTesting::startPageScaleAnimation(
 | 
|      float new_page_scale,
 | 
|      double duration_sec) {}
 | 
|  
 | 
| +// Renamed. Staged for removal.
 | 
|  void WebLayerTreeViewImplForTesting::setNeedsAnimate() {
 | 
| -  layer_tree_host_->SetNeedsAnimate();
 | 
| +  setNeedsUpdateLayers();
 | 
|  }
 | 
|  
 | 
| +void WebLayerTreeViewImplForTesting::setNeedsUpdateLayers() {
 | 
| +  layer_tree_host_->SetNeedsUpdateLayers();
 | 
| +}
 | 
| +
 | 
| +// Unused. Staged for removal.
 | 
|  bool WebLayerTreeViewImplForTesting::commitRequested() const {
 | 
| -  return layer_tree_host_->CommitRequested();
 | 
| +  NOTREACHED();
 | 
| +  return false;
 | 
|  }
 | 
|  
 | 
|  void WebLayerTreeViewImplForTesting::composite() {
 | 
| 
 |