| Index: ui/gfx/test/gfx_util.h
|
| diff --git a/ui/gfx/test/gfx_util.h b/ui/gfx/test/gfx_util.h
|
| index e7ed59d791daa06cd9420c48cfd0c3d33fb12d67..3b01c73fa883667cfbefe8ce2eadc5c446c9dd32 100644
|
| --- a/ui/gfx/test/gfx_util.h
|
| +++ b/ui/gfx/test/gfx_util.h
|
| @@ -17,6 +17,7 @@ class AxisTransform2d;
|
| class BoxF;
|
| class PointF;
|
| class RectF;
|
| +class SizeF;
|
|
|
| #define EXPECT_AXIS_TRANSFORM2D_EQ(a, b) \
|
| EXPECT_PRED_FORMAT2(::gfx::AssertAxisTransform2dFloatEqual, a, b)
|
| @@ -59,6 +60,13 @@ class RectF;
|
| SkColor lhs,
|
| SkColor rhs);
|
|
|
| +#define EXPECT_SIZEF_EQ(a, b) \
|
| + EXPECT_PRED_FORMAT2(::gfx::AssertSizeFFloatEqual, a, b)
|
| +
|
| +::testing::AssertionResult AssertSizeFFloatEqual(const char* lhs_expr,
|
| + const char* rhs_expr,
|
| + const SizeF& lhs,
|
| + const SizeF& rhs);
|
| } // namespace gfx
|
|
|
| #endif // UI_GFX_TEST_GFX_UTIL_H_
|
|
|