| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/ref_counted_memory.h" | 5 #include "base/memory/ref_counted_memory.h" |
| 6 | 6 |
| 7 RefCountedMemory::RefCountedMemory() { | 7 RefCountedMemory::RefCountedMemory() { |
| 8 } | 8 } |
| 9 | 9 |
| 10 RefCountedMemory::~RefCountedMemory() { | 10 RefCountedMemory::~RefCountedMemory() { |
| 11 } | 11 } |
| 12 | 12 |
| 13 const unsigned char* RefCountedStaticMemory::front() const { | 13 const unsigned char* RefCountedStaticMemory::front() const { |
| 14 return data_; | 14 return data_; |
| 15 } | 15 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 37 // expects a NULL. | 37 // expects a NULL. |
| 38 return size() ? &data.front() : NULL; | 38 return size() ? &data.front() : NULL; |
| 39 } | 39 } |
| 40 | 40 |
| 41 size_t RefCountedBytes::size() const { | 41 size_t RefCountedBytes::size() const { |
| 42 return data.size(); | 42 return data.size(); |
| 43 } | 43 } |
| 44 | 44 |
| 45 RefCountedBytes::~RefCountedBytes() { | 45 RefCountedBytes::~RefCountedBytes() { |
| 46 } | 46 } |
| OLD | NEW |