| Index: Source/core/layout/LayoutThemeTest.cpp
|
| diff --git a/Source/core/layout/LayoutThemeTest.cpp b/Source/core/layout/LayoutThemeTest.cpp
|
| index 826b449da02f3afdd9ee9e1fdfe72ab3e9240b90..5192613171eddae2a2a0574fe18880a0b35da610 100644
|
| --- a/Source/core/layout/LayoutThemeTest.cpp
|
| +++ b/Source/core/layout/LayoutThemeTest.cpp
|
| @@ -16,14 +16,11 @@
|
| #include "platform/graphics/Color.h"
|
| #include <gtest/gtest.h>
|
|
|
| -using namespace blink;
|
| -
|
| -namespace {
|
| +namespace blink {
|
|
|
| class LayoutThemeTest : public ::testing::Test {
|
| -
|
| protected:
|
| - virtual void SetUp() override;
|
| + void SetUp() override;
|
| HTMLDocument& document() const { return *m_document; }
|
| void setHtmlInnerHTML(const char* htmlContent);
|
|
|
| @@ -89,4 +86,4 @@ TEST_F(LayoutThemeTest, ChangeFocusRingColor)
|
| EXPECT_EQ(customColor, outlineColor(span));
|
| }
|
|
|
| -}
|
| +} // namespace blink
|
|
|