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

Side by Side Diff: base/ref_counted_memory.cc

Issue 6410105: run iwyu on base! Base URL: svn://svn.chromium.org/chrome/trunk/src/base
Patch Set: Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « base/ref_counted.cc ('k') | base/safe_strerror_posix.cc » ('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 <stddef.h>
6 #include <vector>
7
5 #include "base/ref_counted_memory.h" 8 #include "base/ref_counted_memory.h"
6 9
7 RefCountedMemory::RefCountedMemory() { 10 RefCountedMemory::RefCountedMemory() {
8 } 11 }
9 12
10 RefCountedMemory::~RefCountedMemory() { 13 RefCountedMemory::~RefCountedMemory() {
11 } 14 }
12 15
13 const unsigned char* RefCountedStaticMemory::front() const { 16 const unsigned char* RefCountedStaticMemory::front() const {
14 return data_; 17 return data_;
(...skipping 22 matching lines...) Expand all
37 // expects a NULL. 40 // expects a NULL.
38 return size() ? &data.front() : NULL; 41 return size() ? &data.front() : NULL;
39 } 42 }
40 43
41 size_t RefCountedBytes::size() const { 44 size_t RefCountedBytes::size() const {
42 return data.size(); 45 return data.size();
43 } 46 }
44 47
45 RefCountedBytes::~RefCountedBytes() { 48 RefCountedBytes::~RefCountedBytes() {
46 } 49 }
OLDNEW
« no previous file with comments | « base/ref_counted.cc ('k') | base/safe_strerror_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698