Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(569)

Unified Diff: Source/core/css/MediaQueryListTest.cpp

Issue 1164413003: Fix unit test style in core/{animation,css,fetch,frame,layout,style,timing}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698