| Index: cc/trees/layer_tree_host_pixeltest_blending.cc
|
| diff --git a/cc/trees/layer_tree_host_pixeltest_blending.cc b/cc/trees/layer_tree_host_pixeltest_blending.cc
|
| index 656d2922e027b269fa81f5375b6a3535e048f0f7..e4d95bc361ec74d39ed7dcf097cd48b31913ff5a 100644
|
| --- a/cc/trees/layer_tree_host_pixeltest_blending.cc
|
| +++ b/cc/trees/layer_tree_host_pixeltest_blending.cc
|
| @@ -146,8 +146,7 @@
|
| scoped_refptr<PictureImageLayer> layer = PictureImageLayer::Create();
|
| layer->SetIsDrawable(true);
|
| layer->SetBounds(gfx::Size(width, height));
|
| - layer->SetImage(PaintImage(PaintImage::GetNextId(),
|
| - backing_store->makeImageSnapshot()));
|
| + layer->SetImage(PaintImage(backing_store->makeImageSnapshot()));
|
| return layer;
|
| }
|
|
|
| @@ -169,8 +168,7 @@
|
| bounds.width() - kMaskOffset * 2,
|
| bounds.height() - kMaskOffset * 2),
|
| paint);
|
| - mask->SetImage(
|
| - PaintImage(PaintImage::GetNextId(), surface->makeImageSnapshot()));
|
| + mask->SetImage(PaintImage(surface->makeImageSnapshot()));
|
| layer->SetMaskLayer(mask.get());
|
| }
|
|
|
|
|