| Index: base/memory/ref_counted_memory.h
|
| ===================================================================
|
| --- base/memory/ref_counted_memory.h (revision 133676)
|
| +++ base/memory/ref_counted_memory.h (working copy)
|
| @@ -35,6 +35,8 @@
|
| virtual ~RefCountedMemory();
|
| };
|
|
|
| +namespace base {
|
| +
|
| // An implementation of RefCountedMemory, where the ref counting does not
|
| // matter.
|
| class BASE_EXPORT RefCountedStaticMemory : public RefCountedMemory {
|
| @@ -55,8 +57,6 @@
|
| DISALLOW_COPY_AND_ASSIGN(RefCountedStaticMemory);
|
| };
|
|
|
| -namespace base {
|
| -
|
| // An implementation of RefCountedMemory, where we own our the data in a
|
| // vector.
|
| class BASE_EXPORT RefCountedBytes : public RefCountedMemory {
|
|
|