Chromium Code Reviews| Index: Source/core/css/MediaQueryListTest.cpp |
| diff --git a/Source/core/css/MediaQueryListTest.cpp b/Source/core/css/MediaQueryListTest.cpp |
| index 2875a37b7610a896aa1d3183aed62414f5201870..1f3061d0b5ee1a935fae7e7a3e388418199199c9 100644 |
| --- a/Source/core/css/MediaQueryListTest.cpp |
| +++ b/Source/core/css/MediaQueryListTest.cpp |
| @@ -11,17 +11,17 @@ |
| #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 { } |
| }; |
| } |
|
kochi
2015/06/10 08:04:08
nit: "// anonymous namespace"?
tkent
2015/06/10 08:31:43
Done.
|
| -namespace blink { |
| - |
| TEST(MediaQueryListTest, CrashInStop) |
| { |
| RefPtrWillBeRawPtr<Document> document = Document::create(); |
| @@ -31,4 +31,4 @@ TEST(MediaQueryListTest, CrashInStop) |
| // This test passes if it's not crashed. |
| } |
| -} |
| +} // namespace blink |