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

Side by Side Diff: base/memory/ref_counted_memory.h

Issue 10065037: RefCounted types should not have public destructors, base/ edition (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef BASE_MEMORY_REF_COUNTED_MEMORY_H_ 5 #ifndef BASE_MEMORY_REF_COUNTED_MEMORY_H_
6 #define BASE_MEMORY_REF_COUNTED_MEMORY_H_ 6 #define BASE_MEMORY_REF_COUNTED_MEMORY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 RefCountedStaticMemory() 42 RefCountedStaticMemory()
43 : data_(NULL), length_(0) {} 43 : data_(NULL), length_(0) {}
44 RefCountedStaticMemory(const unsigned char* data, size_t length) 44 RefCountedStaticMemory(const unsigned char* data, size_t length)
45 : data_(length ? data : NULL), length_(length) {} 45 : data_(length ? data : NULL), length_(length) {}
46 46
47 // Overridden from RefCountedMemory: 47 // Overridden from RefCountedMemory:
48 virtual const unsigned char* front() const OVERRIDE; 48 virtual const unsigned char* front() const OVERRIDE;
49 virtual size_t size() const OVERRIDE; 49 virtual size_t size() const OVERRIDE;
50 50
51 private: 51 private:
52 virtual ~RefCountedStaticMemory();
53
52 const unsigned char* data_; 54 const unsigned char* data_;
53 size_t length_; 55 size_t length_;
54 56
55 DISALLOW_COPY_AND_ASSIGN(RefCountedStaticMemory); 57 DISALLOW_COPY_AND_ASSIGN(RefCountedStaticMemory);
56 }; 58 };
57 59
58 // An implementation of RefCountedMemory, where we own our the data in a 60 // An implementation of RefCountedMemory, where we own our the data in a
59 // vector. 61 // vector.
60 class BASE_EXPORT RefCountedBytes : public RefCountedMemory { 62 class BASE_EXPORT RefCountedBytes : public RefCountedMemory {
61 public: 63 public:
62 RefCountedBytes(); 64 RefCountedBytes();
63 65
64 // Constructs a RefCountedBytes object by _copying_ from |initializer|. 66 // Constructs a RefCountedBytes object by _copying_ from |initializer|.
65 RefCountedBytes(const std::vector<unsigned char>& initializer); 67 RefCountedBytes(const std::vector<unsigned char>& initializer);
66 68
67 // Constructs a RefCountedBytes object by performing a swap. (To non 69 // Constructs a RefCountedBytes object by performing a swap. (To non
68 // destructively build a RefCountedBytes, use the constructor that takes a 70 // destructively build a RefCountedBytes, use the constructor that takes a
69 // vector.) 71 // vector.)
70 static RefCountedBytes* TakeVector(std::vector<unsigned char>* to_destroy); 72 static RefCountedBytes* TakeVector(std::vector<unsigned char>* to_destroy);
71 73
72 // Overridden from RefCountedMemory: 74 // Overridden from RefCountedMemory:
73 virtual const unsigned char* front() const OVERRIDE; 75 virtual const unsigned char* front() const OVERRIDE;
74 virtual size_t size() const OVERRIDE; 76 virtual size_t size() const OVERRIDE;
75 77
76 const std::vector<unsigned char>& data() const { return data_; } 78 const std::vector<unsigned char>& data() const { return data_; }
77 std::vector<unsigned char>& data() { return data_; } 79 std::vector<unsigned char>& data() { return data_; }
78 80
79 private: 81 private:
80 friend class base::RefCountedThreadSafe<RefCountedBytes>;
81 virtual ~RefCountedBytes(); 82 virtual ~RefCountedBytes();
82 83
83 std::vector<unsigned char> data_; 84 std::vector<unsigned char> data_;
84 85
85 DISALLOW_COPY_AND_ASSIGN(RefCountedBytes); 86 DISALLOW_COPY_AND_ASSIGN(RefCountedBytes);
86 }; 87 };
87 88
88 namespace base { 89 namespace base {
89 90
90 // An implementation of RefCountedMemory, where the bytes are stored in an STL 91 // An implementation of RefCountedMemory, where the bytes are stored in an STL
91 // string. Use this if your data naturally arrives in that format. 92 // string. Use this if your data naturally arrives in that format.
92 class BASE_EXPORT RefCountedString : public RefCountedMemory { 93 class BASE_EXPORT RefCountedString : public RefCountedMemory {
93 public: 94 public:
94 RefCountedString(); 95 RefCountedString();
95 96
96 // Constructs a RefCountedString object by performing a swap. (To non 97 // Constructs a RefCountedString object by performing a swap. (To non
97 // destructively build a RefCountedString, use the default constructor and 98 // destructively build a RefCountedString, use the default constructor and
98 // copy into object->data()). 99 // copy into object->data()).
99 static RefCountedString* TakeString(std::string* to_destroy); 100 static RefCountedString* TakeString(std::string* to_destroy);
100 101
101 // Overridden from RefCountedMemory: 102 // Overridden from RefCountedMemory:
102 virtual const unsigned char* front() const OVERRIDE; 103 virtual const unsigned char* front() const OVERRIDE;
103 virtual size_t size() const OVERRIDE; 104 virtual size_t size() const OVERRIDE;
104 105
105 const std::string& data() const { return data_; } 106 const std::string& data() const { return data_; }
106 std::string& data() { return data_; } 107 std::string& data() { return data_; }
107 108
108 private: 109 private:
109 friend class base::RefCountedThreadSafe<RefCountedString>;
110 virtual ~RefCountedString(); 110 virtual ~RefCountedString();
111 111
112 std::string data_; 112 std::string data_;
113 113
114 DISALLOW_COPY_AND_ASSIGN(RefCountedString); 114 DISALLOW_COPY_AND_ASSIGN(RefCountedString);
115 }; 115 };
116 116
117 } // namespace base 117 } // namespace base
118 118
119 #endif // BASE_MEMORY_REF_COUNTED_MEMORY_H_ 119 #endif // BASE_MEMORY_REF_COUNTED_MEMORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698