| Index: cc/trees/layer_tree_host_unittest.cc
 | 
| diff --git a/cc/trees/layer_tree_host_unittest.cc b/cc/trees/layer_tree_host_unittest.cc
 | 
| index ff8c5e8e06d80cbe123437c413d93c81c93512f1..db7bb9cea5c27653d55b11fe6b9c23bffa344a1a 100644
 | 
| --- a/cc/trees/layer_tree_host_unittest.cc
 | 
| +++ b/cc/trees/layer_tree_host_unittest.cc
 | 
| @@ -1326,11 +1326,11 @@ class TestOpacityChangeLayerDelegate : public ContentLayerClient {
 | 
|      if (test_layer_)
 | 
|        test_layer_->SetOpacity(0.f);
 | 
|    }
 | 
| -  void PaintContentsToDisplayList(
 | 
| -      DisplayItemList* display_list,
 | 
| +  scoped_refptr<DisplayItemList> PaintContentsToDisplayList(
 | 
|        const gfx::Rect& clip,
 | 
|        PaintingControlSetting picture_control) override {
 | 
|      NOTIMPLEMENTED();
 | 
| +    return DisplayItemList::Create();
 | 
|    }
 | 
|    bool FillsBoundsCompletely() const override { return false; }
 | 
|  
 | 
| @@ -2791,11 +2791,11 @@ class LayerTreeHostTestChangeLayerPropertiesInPaintContents
 | 
|        layer_->SetBounds(gfx::Size(2, 2));
 | 
|      }
 | 
|  
 | 
| -    void PaintContentsToDisplayList(
 | 
| -        DisplayItemList* display_list,
 | 
| +    scoped_refptr<DisplayItemList> PaintContentsToDisplayList(
 | 
|          const gfx::Rect& clip,
 | 
|          PaintingControlSetting picture_control) override {
 | 
|        NOTIMPLEMENTED();
 | 
| +      return DisplayItemList::Create();
 | 
|      }
 | 
|  
 | 
|      bool FillsBoundsCompletely() const override { return false; }
 | 
| 
 |