| Index: Source/web/tests/ProgrammaticScrollTest.cpp
|
| diff --git a/Source/web/tests/ProgrammaticScrollTest.cpp b/Source/web/tests/ProgrammaticScrollTest.cpp
|
| index 6b60ee54906c0a481e6d455afccd98fc0122f82e..1ec51fe30153623e53ef1176f81d6acde5eadf5e 100644
|
| --- a/Source/web/tests/ProgrammaticScrollTest.cpp
|
| +++ b/Source/web/tests/ProgrammaticScrollTest.cpp
|
| @@ -17,9 +17,7 @@
|
| #include "web/tests/FrameTestHelpers.h"
|
| #include <gtest/gtest.h>
|
|
|
| -using namespace blink;
|
| -
|
| -namespace {
|
| +namespace blink {
|
|
|
| class MockWebFrameClient : public WebFrameClient {
|
| };
|
| @@ -31,7 +29,7 @@ public:
|
| {
|
| }
|
|
|
| - virtual void TearDown()
|
| + void TearDown() override
|
| {
|
| Platform::current()->unitTestSupport()->unregisterAllMockedURLs();
|
| }
|
| @@ -103,4 +101,4 @@ TEST_F(ProgrammaticScrollTest, RestoreScrollPositionAndViewStateWithoutScale)
|
| EXPECT_EQ(400, webViewImpl->mainFrameImpl()->scrollOffset().height);
|
| }
|
|
|
| -}
|
| +} // namespace blink
|
|
|