summaryrefslogtreecommitdiffstats
path: root/base/scoped_ptr.h
diff options
context:
space:
mode:
authordeanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-21 11:13:46 +0000
committerdeanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-21 11:13:46 +0000
commit43f8dd28407afa029e88c7431c85f193d5ad537d (patch)
tree1c38d42e3d449bbbe0503beeb6b11978b515b173 /base/scoped_ptr.h
parent458711987f6eb0cade8296c2b067c465f11099a9 (diff)
downloadchromium_src-43f8dd28407afa029e88c7431c85f193d5ad537d.zip
chromium_src-43f8dd28407afa029e88c7431c85f193d5ad537d.tar.gz
chromium_src-43f8dd28407afa029e88c7431c85f193d5ad537d.tar.bz2
Remove the unused make_scoped_ptr interface.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1150 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/scoped_ptr.h')
-rw-r--r--base/scoped_ptr.h33
1 files changed, 3 insertions, 30 deletions
diff --git a/base/scoped_ptr.h b/base/scoped_ptr.h
index 0c9ea95..a420e77 100644
--- a/base/scoped_ptr.h
+++ b/base/scoped_ptr.h
@@ -31,25 +31,14 @@
#ifndef BASE_SCOPED_PTR_H__
#define BASE_SCOPED_PTR_H__
-// This is an implementation designed to match the anticipated future TR2
-// implementation of the scoped_ptr class, and its closely-related brethren,
-// scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
-//
-// See http://wiki/Main/ScopedPointerInterface for the spec that drove this
-// file.
+// This is an implementation designed to match the anticipated future TR2
+// implementation of the scoped_ptr class, and its closely-related brethren,
+// scoped_array, scoped_ptr_malloc.
#include <assert.h>
#include <stdlib.h>
#include <cstddef>
-
-template <class C> class scoped_ptr;
-template <class C, class Free> class scoped_ptr_malloc;
-template <class C> class scoped_array;
-
-template <class C>
-scoped_ptr<C> make_scoped_ptr(C *);
-
// A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T>
// automatically deletes the pointer it holds (if any).
// That is, scoped_ptr<T> owns the T object that it points to.
@@ -128,8 +117,6 @@ class scoped_ptr {
private:
C* ptr_;
- friend scoped_ptr<C> make_scoped_ptr<C>(C *p);
-
// Forbid comparison of scoped_ptr types. If C2 != C, it totally doesn't
// make sense, and if C2 == C, it still doesn't make sense because you should
// never have the same object owned by two different scoped_ptrs.
@@ -157,20 +144,6 @@ bool operator!=(C* p1, const scoped_ptr<C>& p2) {
return p1 != p2.get();
}
-template <class C>
-scoped_ptr<C> make_scoped_ptr(C *p) {
- // This does nothing but to return a scoped_ptr of the type that the passed
- // pointer is of. (This eliminates the need to specify the name of T when
- // making a scoped_ptr that is used anonymously/temporarily.) From an
- // access control point of view, we construct an unnamed scoped_ptr here
- // which we return and thus copy-construct. Hence, we need to have access
- // to scoped_ptr::scoped_ptr(scoped_ptr const &). However, it is guaranteed
- // that we never actually call the copy constructor, which is a good thing
- // as we would call the temporary's object destructor (and thus delete p)
- // if we actually did copy some object, here.
- return scoped_ptr<C>(p);
-}
-
// scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
// with new [] and the destructor deletes objects with delete [].
//