Chromium Code Reviews| Index: third_party/WebKit/Source/web/tests/VisualViewportTest.cpp |
| diff --git a/third_party/WebKit/Source/web/tests/VisualViewportTest.cpp b/third_party/WebKit/Source/web/tests/VisualViewportTest.cpp |
| index 74884f37fc6a0d69fd905dc5edd84b482f88c574..9f4809577c95d7cf4dbf259bc8a4afb7c6ba49c3 100644 |
| --- a/third_party/WebKit/Source/web/tests/VisualViewportTest.cpp |
| +++ b/third_party/WebKit/Source/web/tests/VisualViewportTest.cpp |
| @@ -65,12 +65,6 @@ |
| EXPECT_FLOAT_EQ((expected).y(), (actual).y()); \ |
| } while (false) |
| -#define EXPECT_POINT_EQ(expected, actual) \ |
| - do { \ |
| - EXPECT_EQ((expected).x(), (actual).x()); \ |
| - EXPECT_EQ((expected).y(), (actual).y()); \ |
| - } while (false) |
| - |
|
Łukasz Anforowicz
2017/01/26 18:01:05
Identical macro definition is on line 56 above. :-
|
| #define EXPECT_SIZE_EQ(expected, actual) \ |
| do { \ |
| EXPECT_EQ((expected).width(), (actual).width()); \ |