| Index: cc/layers/nine_patch_layer_impl_unittest.cc
|
| diff --git a/cc/layers/nine_patch_layer_impl_unittest.cc b/cc/layers/nine_patch_layer_impl_unittest.cc
|
| index f6262d33dad7c7910d54c97050be15aa67d19d16..c901a970069973976c611ea098be020bd5d638ee 100644
|
| --- a/cc/layers/nine_patch_layer_impl_unittest.cc
|
| +++ b/cc/layers/nine_patch_layer_impl_unittest.cc
|
| @@ -80,7 +80,7 @@ void NinePatchLayerLayoutTest(const gfx::Size& bitmap_size,
|
| // Check if the left-over quad is the same size as the mapped aperture quad in
|
| // layer space.
|
| if (!fill_center) {
|
| - EXPECT_RECT_EQ(expected_remaining, gfx::ToEnclosedRect(remaining.bounds()));
|
| + EXPECT_EQ(expected_remaining, gfx::ToEnclosedRect(remaining.bounds()));
|
| } else {
|
| EXPECT_TRUE(remaining.bounds().IsEmpty());
|
| }
|
| @@ -97,7 +97,7 @@ void NinePatchLayerLayoutTest(const gfx::Size& bitmap_size,
|
| }
|
|
|
| if (!fill_center) {
|
| - EXPECT_RECT_EQ(aperture_rect, tex_remaining.bounds());
|
| + EXPECT_EQ(aperture_rect, tex_remaining.bounds());
|
| Region aperture_region(aperture_rect);
|
| EXPECT_EQ(aperture_region, tex_remaining);
|
| } else {
|
|
|