| Index: Source/core/dom/NthIndexCacheTest.cpp
|
| diff --git a/Source/core/dom/NthIndexCacheTest.cpp b/Source/core/dom/NthIndexCacheTest.cpp
|
| index 520f759ebe46101b917d76c94b28c4d1601b42e8..34bbb4a9db96354af3b09bb58c8b3a674f2346a6 100644
|
| --- a/Source/core/dom/NthIndexCacheTest.cpp
|
| +++ b/Source/core/dom/NthIndexCacheTest.cpp
|
| @@ -10,14 +10,11 @@
|
| #include "core/testing/DummyPageHolder.h"
|
| #include <gtest/gtest.h>
|
|
|
| -using namespace blink;
|
| -
|
| -namespace {
|
| +namespace blink {
|
|
|
| class NthIndexCacheTest : public ::testing::Test {
|
| -
|
| protected:
|
| - virtual void SetUp() override;
|
| + void SetUp() override;
|
|
|
| Document& document() const { return m_dummyPageHolder->document(); }
|
| void setHtmlInnerHTML(const char* htmlContent);
|
| @@ -49,4 +46,4 @@ TEST_F(NthIndexCacheTest, NthIndex)
|
| EXPECT_EQ(nthIndexCache.nthLastChildIndex(*document().getElementById("nth-last-child")), 12U);
|
| }
|
|
|
| -} // namespace
|
| +} // namespace blink
|
|
|