| Index: cc/layers/layer_unittest.cc
|
| diff --git a/cc/layers/layer_unittest.cc b/cc/layers/layer_unittest.cc
|
| index e55c86f4bd32fcf7b617fa1746969fbdcdf48780..bd4c508692c9d85ad8d73f5bc674962a2e0044d9 100644
|
| --- a/cc/layers/layer_unittest.cc
|
| +++ b/cc/layers/layer_unittest.cc
|
| @@ -324,8 +324,9 @@ TEST_F(LayerTest, LayerPropertyChangedForSubtree) {
|
| // Should be a different size than previous call, to ensure it marks tree
|
| // changed.
|
| gfx::Size arbitrary_size = gfx::Size(111, 222);
|
| - EXPECT_CALL(*layer_tree_host_, SetNeedsCommit()).Times(1);
|
| + EXPECT_CALL(*layer_tree_host_, SetNeedsCommit()).Times(2);
|
| EXECUTE_AND_VERIFY_SUBTREE_CHANGED(root->SetBounds(arbitrary_size));
|
| + EXECUTE_AND_VERIFY_SUBTREE_CHANGED(dummy_layer1->SetBounds(arbitrary_size));
|
| EXECUTE_AND_VERIFY_SUBTREE_CHANGES_RESET(
|
| root->PushPropertiesTo(root_impl.get());
|
| child->PushPropertiesTo(child_impl.get());
|
|
|