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

Unified Diff: net/base/gzip_filter_unittest.cc

Issue 6639002: Put Filter into namespace net. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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: net/base/gzip_filter_unittest.cc
diff --git a/net/base/gzip_filter_unittest.cc b/net/base/gzip_filter_unittest.cc
index d07c24d3a2eab77966e151f972f691dc28805a8e..fa4d67a9a596b6042c9db44906f574cd5b1df0a6 100644
--- a/net/base/gzip_filter_unittest.cc
+++ b/net/base/gzip_filter_unittest.cc
@@ -20,6 +20,7 @@
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
+namespace net {
tfarina 2011/03/08 20:54:49 please, could you move this to the line 56?
adamk 2011/03/08 21:35:20 Done.
namespace {
const int kDefaultBufferSize = 4096;
@@ -391,3 +392,5 @@ TEST_F(GZipUnitTest, DecodeCorruptedHeader) {
// Expect failures
EXPECT_TRUE(code == Filter::FILTER_ERROR);
}
+
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698