| Index: cc/trees/layer_tree_impl_unittest.cc
|
| diff --git a/cc/trees/layer_tree_impl_unittest.cc b/cc/trees/layer_tree_impl_unittest.cc
|
| index 2131d4c7288dd3db8f4da64c3e5596d11d09edd0..78d72de33e70cdf55ecf9ef2e880cccba408771e 100644
|
| --- a/cc/trees/layer_tree_impl_unittest.cc
|
| +++ b/cc/trees/layer_tree_impl_unittest.cc
|
| @@ -463,7 +463,7 @@ TEST_F(LayerTreeImplTest, HitTestingForSingleLayerWithScaledContents) {
|
| // its layout size is 50x50, positioned at 25x25.
|
| LayerImpl* test_layer =
|
| host_impl().active_tree()->root_layer()->children()[0];
|
| - EXPECT_RECT_EQ(gfx::Rect(0, 0, 100, 100), test_layer->visible_content_rect());
|
| + EXPECT_EQ(gfx::Rect(0, 0, 100, 100), test_layer->visible_content_rect());
|
| ASSERT_EQ(1u, RenderSurfaceLayerList().size());
|
| ASSERT_EQ(1u, root_layer()->render_surface()->layer_list().size());
|
|
|
| @@ -1697,7 +1697,7 @@ TEST_F(LayerTreeImplTest,
|
| // its layout size is 50x50, positioned at 25x25.
|
| LayerImpl* test_layer =
|
| host_impl().active_tree()->root_layer()->children()[0];
|
| - EXPECT_RECT_EQ(gfx::Rect(0, 0, 100, 100), test_layer->visible_content_rect());
|
| + EXPECT_EQ(gfx::Rect(0, 0, 100, 100), test_layer->visible_content_rect());
|
| ASSERT_EQ(1u, RenderSurfaceLayerList().size());
|
| ASSERT_EQ(1u, root_layer()->render_surface()->layer_list().size());
|
|
|
| @@ -1812,8 +1812,8 @@ TEST_F(LayerTreeImplTest,
|
| ASSERT_EQ(1u, root_layer()->render_surface()->layer_list().size());
|
|
|
| // Check whether the child layer fits into the root after scaled.
|
| - EXPECT_RECT_EQ(gfx::Rect(test_layer->content_bounds()),
|
| - test_layer->visible_content_rect());
|
| + EXPECT_EQ(gfx::Rect(test_layer->content_bounds()),
|
| + test_layer->visible_content_rect());
|
|
|
| // Hit checking for a point outside the layer should return a null pointer
|
| // (the root layer does not draw content, so it will not be tested either).
|
|
|