Index: net/base/filter.cc |
diff --git a/net/base/filter.cc b/net/base/filter.cc |
index b229c4598b781a1b315ade41ee95729ed7d4a9bd..48201d43c531b05b872fa533d7615a26325fbda6 100644 |
--- a/net/base/filter.cc |
+++ b/net/base/filter.cc |
@@ -11,6 +11,7 @@ |
#include "net/base/mime_util.h" |
#include "net/base/sdch_filter.h" |
+namespace net { |
tfarina
2011/03/08 20:54:49
Please, could you move this to line 42?
adamk
2011/03/08 21:35:20
Done.
|
namespace { |
// Filter types (using canonical lower case only): |
@@ -400,3 +401,5 @@ void Filter::PushDataIntoNextFilter() { |
if (FILTER_ERROR != last_status_) |
next_filter_->FlushStreamBuffer(next_size); |
} |
+ |
+} // namespace net |