| 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 db7bb9cea5c27653d55b11fe6b9c23bffa344a1a..ff8c5e8e06d80cbe123437c413d93c81c93512f1 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);
|
| }
|
| - scoped_refptr<DisplayItemList> PaintContentsToDisplayList(
|
| + void PaintContentsToDisplayList(
|
| + DisplayItemList* display_list,
|
| 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));
|
| }
|
|
|
| - scoped_refptr<DisplayItemList> PaintContentsToDisplayList(
|
| + void PaintContentsToDisplayList(
|
| + DisplayItemList* display_list,
|
| const gfx::Rect& clip,
|
| PaintingControlSetting picture_control) override {
|
| NOTIMPLEMENTED();
|
| - return DisplayItemList::Create();
|
| }
|
|
|
| bool FillsBoundsCompletely() const override { return false; }
|
|
|