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

Unified Diff: Source/modules/websockets/WebSocketDeflaterTest.cpp

Issue 454353002: Cleanup namespace usage in modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/modules/websockets/WebSocketDeflaterTest.cpp
diff --git a/Source/modules/websockets/WebSocketDeflaterTest.cpp b/Source/modules/websockets/WebSocketDeflaterTest.cpp
index c8f2b4a1c03eef3daba5695657b7a572714bce98..c44aa6dc887dc5a8809f386006c5f6e247e95325 100644
--- a/Source/modules/websockets/WebSocketDeflaterTest.cpp
+++ b/Source/modules/websockets/WebSocketDeflaterTest.cpp
@@ -29,8 +29,7 @@
#include "wtf/Vector.h"
#include <gtest/gtest.h>
-using namespace blink;
-
+namespace blink {
namespace {
TEST(WebSocketDeflaterTest, TestCompressHello)
@@ -153,4 +152,5 @@ TEST(WebSocketDeflaterTest, TestLargeData)
EXPECT_EQ(0, memcmp(inputData.data(), inflater->data(), inflater->size()));
}
-}
+} // namespace
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698