diff options
Diffstat (limited to 'base/memory/ref_counted_memory.h')
-rw-r--r-- | base/memory/ref_counted_memory.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/base/memory/ref_counted_memory.h b/base/memory/ref_counted_memory.h index c9170f5..9c863c6 100644 --- a/base/memory/ref_counted_memory.h +++ b/base/memory/ref_counted_memory.h @@ -13,8 +13,7 @@ #include "base/compiler_specific.h" #include "base/memory/ref_counted.h" -// TODO(erg): The contents of this file should be in a namespace. This would -// require touching >100 files in chrome/ though. +namespace base { // A generic interface to memory. This object is reference counted because one // of its two subclasses own the data they carry, and we need to have @@ -35,8 +34,6 @@ class BASE_EXPORT RefCountedMemory virtual ~RefCountedMemory(); }; -namespace base { - // An implementation of RefCountedMemory, where the ref counting does not // matter. class BASE_EXPORT RefCountedStaticMemory : public RefCountedMemory { |