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 52f8e0a514a7eda7af7a99fd622022735efe6f2a..c77f548f58a9273b14628cd32a788270e443e304 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()); |
@@ -1811,8 +1811,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). |