| Index: cc/trees/layer_tree_host_impl_unittest.cc
|
| diff --git a/cc/trees/layer_tree_host_impl_unittest.cc b/cc/trees/layer_tree_host_impl_unittest.cc
|
| index 919382fde14f4d59713f0eb7803b8591c8a9581c..8f9187b58eeb39b9da862c26857719caf2fd7175 100644
|
| --- a/cc/trees/layer_tree_host_impl_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_impl_unittest.cc
|
| @@ -6579,12 +6579,14 @@ TEST_F(LayerTreeHostImplTest, UpdateTilesForMasksWithNoVisibleContent) {
|
| FakePictureLayerImpl::Create(host_impl_->pending_tree(), 2);
|
|
|
| layer_with_mask->SetBounds(bounds);
|
| + layer_with_mask->SetContentBounds(bounds);
|
|
|
| scoped_ptr<FakePictureLayerImpl> mask =
|
| FakePictureLayerImpl::Create(host_impl_->pending_tree(), 3);
|
|
|
| mask->SetIsMask(true);
|
| mask->SetBounds(bounds);
|
| + mask->SetContentBounds(bounds);
|
|
|
| FakePictureLayerImpl* pending_mask_content = mask.get();
|
| layer_with_mask->SetMaskLayer(mask.PassAs<LayerImpl>());
|
| @@ -6593,6 +6595,7 @@ TEST_F(LayerTreeHostImplTest, UpdateTilesForMasksWithNoVisibleContent) {
|
| FakePictureLayerImpl::Create(host_impl_->pending_tree(), 4);
|
|
|
| child_of_layer_with_mask->SetBounds(bounds);
|
| + child_of_layer_with_mask->SetContentBounds(bounds);
|
| child_of_layer_with_mask->SetDrawsContent(true);
|
|
|
| layer_with_mask->AddChild(child_of_layer_with_mask.PassAs<LayerImpl>());
|
|
|