Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Side by Side Diff: base/ref_counted_memory.cc

Issue 3452030: FBTF: Moves code to the headers. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/ref_counted_memory.h ('k') | base/tracked_objects.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/ref_counted_memory.h"
6 6
7 RefCountedMemory::RefCountedMemory() {
8 }
9
10 RefCountedMemory::~RefCountedMemory() {
11 }
12
7 const unsigned char* RefCountedStaticMemory::front() const { 13 const unsigned char* RefCountedStaticMemory::front() const {
8 return data_; 14 return data_;
9 } 15 }
10 16
11 size_t RefCountedStaticMemory::size() const { 17 size_t RefCountedStaticMemory::size() const {
12 return length_; 18 return length_;
13 } 19 }
14 20
15 RefCountedBytes* RefCountedBytes::TakeVector( 21 RefCountedBytes* RefCountedBytes::TakeVector(
16 std::vector<unsigned char>* to_destroy) { 22 std::vector<unsigned char>* to_destroy) {
(...skipping 14 matching lines...) Expand all
31 37
32 const unsigned char* RefCountedBytes::front() const { 38 const unsigned char* RefCountedBytes::front() const {
33 // STL will assert if we do front() on an empty vector, but calling code 39 // STL will assert if we do front() on an empty vector, but calling code
34 // expects a NULL. 40 // expects a NULL.
35 return size() ? &data.front() : NULL; 41 return size() ? &data.front() : NULL;
36 } 42 }
37 43
38 size_t RefCountedBytes::size() const { 44 size_t RefCountedBytes::size() const {
39 return data.size(); 45 return data.size();
40 } 46 }
OLDNEW
« no previous file with comments | « base/ref_counted_memory.h ('k') | base/tracked_objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698