Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(634)

Unified Diff: third_party/WebKit/Source/core/layout/OverflowModelTest.cpp

Issue 2970833002: Be explicit about namespace testing to not mix it with blink::testing (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/OverflowModelTest.cpp
diff --git a/third_party/WebKit/Source/core/layout/OverflowModelTest.cpp b/third_party/WebKit/Source/core/layout/OverflowModelTest.cpp
index e1dd6f0e43a17aecb3ff314066968a458352bc31..95ad342d55c55168cac4fc18a1070c3881f4e4f5 100644
--- a/third_party/WebKit/Source/core/layout/OverflowModelTest.cpp
+++ b/third_party/WebKit/Source/core/layout/OverflowModelTest.cpp
@@ -44,7 +44,7 @@ LayoutRect InitialVisualOverflow() {
return LayoutRect(0, 0, 100, 100);
}
-class SimpleOverflowModelTest : public testing::Test {
+class SimpleOverflowModelTest : public ::testing::Test {
protected:
SimpleOverflowModelTest()
: overflow_(InitialLayoutOverflow(), InitialVisualOverflow()) {}
@@ -111,7 +111,7 @@ TEST_F(SimpleOverflowModelTest, MoveAffectsVisualOverflow) {
EXPECT_EQ(LayoutRect(500, 100, 100, 100), overflow_.VisualOverflowRect());
}
-class BoxOverflowModelTest : public testing::Test {
+class BoxOverflowModelTest : public ::testing::Test {
protected:
BoxOverflowModelTest()
: overflow_(InitialLayoutOverflow(), InitialVisualOverflow()) {}

Powered by Google App Engine
This is Rietveld 408576698