| Index: cc/test/geometry_test_utils.h
|
| diff --git a/cc/test/geometry_test_utils.h b/cc/test/geometry_test_utils.h
|
| index dc0e8ec3b369b4133f641a827ce3fcf1319c6061..9eaf52ada7c971d4aa1ef818d2e6a3261aeffc0e 100644
|
| --- a/cc/test/geometry_test_utils.h
|
| +++ b/cc/test/geometry_test_utils.h
|
| @@ -14,18 +14,18 @@ namespace WebKitTests {
|
| // These are macros instead of functions so that we get useful line numbers where a test failed.
|
| #define EXPECT_FLOAT_RECT_EQ(expected, actual) \
|
| { \
|
| - EXPECT_FLOAT_EQ((expected).location().x(), (actual).location().x()); \
|
| - EXPECT_FLOAT_EQ((expected).location().y(), (actual).location().y()); \
|
| - EXPECT_FLOAT_EQ((expected).size().width(), (actual).size().width()); \
|
| - EXPECT_FLOAT_EQ((expected).size().height(), (actual).size().height()); \
|
| + EXPECT_FLOAT_EQ((expected).x(), (actual).x()); \
|
| + EXPECT_FLOAT_EQ((expected).y(), (actual).y()); \
|
| + EXPECT_FLOAT_EQ((expected).width(), (actual).width()); \
|
| + EXPECT_FLOAT_EQ((expected).height(), (actual).height()); \
|
| }
|
|
|
| #define EXPECT_RECT_EQ(expected, actual) \
|
| { \
|
| - EXPECT_EQ((expected).location().x(), (actual).location().x()); \
|
| - EXPECT_EQ((expected).location().y(), (actual).location().y()); \
|
| - EXPECT_EQ((expected).size().width(), (actual).size().width()); \
|
| - EXPECT_EQ((expected).size().height(), (actual).size().height()); \
|
| + EXPECT_EQ((expected).x(), (actual).x()); \
|
| + EXPECT_EQ((expected).y(), (actual).y()); \
|
| + EXPECT_EQ((expected).width(), (actual).width()); \
|
| + EXPECT_EQ((expected).height(), (actual).height()); \
|
| }
|
|
|
| #define EXPECT_SIZE_EQ(expected, actual) \
|
|
|