Index: base/memory/ref_counted_memory.cc |
diff --git a/base/memory/ref_counted_memory.cc b/base/memory/ref_counted_memory.cc |
index 7e034f91af622ead5dbd6e85645b5416a1da096a..7a0a7b64d9388a04009fd09660d9a7d49f84d5a4 100644 |
--- a/base/memory/ref_counted_memory.cc |
+++ b/base/memory/ref_counted_memory.cc |
@@ -6,11 +6,9 @@ |
#include "base/logging.h" |
-RefCountedMemory::RefCountedMemory() { |
-} |
+RefCountedMemory::RefCountedMemory() {} |
-RefCountedMemory::~RefCountedMemory() { |
-} |
+RefCountedMemory::~RefCountedMemory() {} |
const unsigned char* RefCountedStaticMemory::front() const { |
return data_; |
@@ -20,8 +18,9 @@ size_t RefCountedStaticMemory::size() const { |
return length_; |
} |
-RefCountedBytes::RefCountedBytes() { |
-} |
+RefCountedStaticMemory::~RefCountedStaticMemory() {} |
+ |
+RefCountedBytes::RefCountedBytes() {} |
RefCountedBytes::RefCountedBytes(const std::vector<unsigned char>& initializer) |
: data_(initializer) { |
@@ -44,8 +43,7 @@ size_t RefCountedBytes::size() const { |
return data_.size(); |
} |
-RefCountedBytes::~RefCountedBytes() { |
-} |
+RefCountedBytes::~RefCountedBytes() {} |
namespace base { |