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

Unified Diff: Source/wtf/DequeTest.cpp

Issue 1184043002: Fix unit test style in Source/wtf/. (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/wtf/DequeTest.cpp
diff --git a/Source/wtf/DequeTest.cpp b/Source/wtf/DequeTest.cpp
index 3a1b8c82c7eb4e657cb6fb0c2d6c8d03b393643c..6452173bc789601e19b07e043e9dafe61a4582eb 100644
--- a/Source/wtf/DequeTest.cpp
+++ b/Source/wtf/DequeTest.cpp
@@ -24,7 +24,6 @@
*/
#include "config.h"
-
#include "wtf/Deque.h"
#include "wtf/HashSet.h"
@@ -32,6 +31,8 @@
#include "wtf/PassOwnPtr.h"
#include <gtest/gtest.h>
+namespace WTF {
+
namespace {
kochi 2015/06/15 03:34:22 Is this anonymous namespace necessary? It seems a
tkent 2015/06/15 03:49:23 Yes, this CL keeps anonymous namespaces only if th
kochi 2015/06/15 04:02:39 Okay, then.
TEST(DequeTest, Basic)
@@ -313,4 +314,6 @@ TEST(DequeTest, SwapWithoutInlineCapacity)
dequeB.swap(dequeA);
}
-} // namespace
+} // anonymous namespace
+
+} // namespace WTF

Powered by Google App Engine
This is Rietveld 408576698