| Index: Source/core/css/MediaQueryListTest.cpp
|
| diff --git a/Source/core/css/MediaQueryListTest.cpp b/Source/core/css/MediaQueryListTest.cpp
|
| index 2875a37b7610a896aa1d3183aed62414f5201870..19949ec976bc675fdf556950bde1225ce29d9765 100644
|
| --- a/Source/core/css/MediaQueryListTest.cpp
|
| +++ b/Source/core/css/MediaQueryListTest.cpp
|
| @@ -11,16 +11,16 @@
|
| #include "core/dom/Document.h"
|
| #include <gtest/gtest.h>
|
|
|
| +namespace blink {
|
| +
|
| namespace {
|
|
|
| -class TestListener : public blink::MediaQueryListListener {
|
| +class TestListener : public MediaQueryListListener {
|
| public:
|
| virtual void notifyMediaQueryChanged() override { }
|
| };
|
|
|
| -}
|
| -
|
| -namespace blink {
|
| +} // anonymous namespace
|
|
|
| TEST(MediaQueryListTest, CrashInStop)
|
| {
|
| @@ -31,4 +31,4 @@ TEST(MediaQueryListTest, CrashInStop)
|
| // This test passes if it's not crashed.
|
| }
|
|
|
| -}
|
| +} // namespace blink
|
|
|