| Index: Source/web/tests/LayoutGeometryMapTest.cpp
|
| diff --git a/Source/web/tests/LayoutGeometryMapTest.cpp b/Source/web/tests/LayoutGeometryMapTest.cpp
|
| index 648204f75fd6739793d3ccb2e4b1082fbb406a1b..b88e9d96b9a65e406668b20d962b270f49d28abd 100644
|
| --- a/Source/web/tests/LayoutGeometryMapTest.cpp
|
| +++ b/Source/web/tests/LayoutGeometryMapTest.cpp
|
| @@ -44,12 +44,10 @@
|
| #include "web/tests/FrameTestHelpers.h"
|
| #include <gtest/gtest.h>
|
|
|
| -using namespace blink;
|
| +namespace blink {
|
|
|
| class MockWebFrameClient : public WebFrameClient {
|
| };
|
| -namespace {
|
| -
|
|
|
| class LayoutGeometryMapTest : public testing::Test {
|
| public:
|
| @@ -58,7 +56,7 @@ public:
|
| {
|
| }
|
|
|
| - virtual void TearDown()
|
| + void TearDown() override
|
| {
|
| Platform::current()->unitTestSupport()->unregisterAllMockedURLs();
|
| }
|
| @@ -394,4 +392,5 @@ TEST_F(LayoutGeometryMapTest, ColumnTest)
|
| EXPECT_EQ(3.0f, rectFromQuad(rgm.mapToContainer(rect, nullptr)).height());
|
|
|
| }
|
| -} // namespace ::
|
| +
|
| +} // namespace blink
|
|
|