summaryrefslogtreecommitdiffstats
path: root/base/memory/scoped_nsobject.h
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-17 04:25:20 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-17 04:25:20 +0000
commit6e33c8cfb5f861802c9311b724da3ec64bec0736 (patch)
tree3975011c534f057d3eaed0792cf8ddb6dfc6a514 /base/memory/scoped_nsobject.h
parentc099901b51041f98f02b4100d1cc0d61391e7790 (diff)
downloadchromium_src-6e33c8cfb5f861802c9311b724da3ec64bec0736.zip
chromium_src-6e33c8cfb5f861802c9311b724da3ec64bec0736.tar.gz
chromium_src-6e33c8cfb5f861802c9311b724da3ec64bec0736.tar.bz2
Remove an unused typedef in scoped_nsobject.h
BUG=none TEST=none Review URL: http://codereview.chromium.org/8283019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105764 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/memory/scoped_nsobject.h')
-rw-r--r--base/memory/scoped_nsobject.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/base/memory/scoped_nsobject.h b/base/memory/scoped_nsobject.h
index 235ac39..65e35d5 100644
--- a/base/memory/scoped_nsobject.h
+++ b/base/memory/scoped_nsobject.h
@@ -29,8 +29,6 @@
template<typename NST>
class scoped_nsobject {
public:
- typedef NST* element_type;
-
explicit scoped_nsobject(NST* object = nil)
: object_(object) {
}
@@ -102,8 +100,6 @@ bool operator!=(C* p1, const scoped_nsobject<C>& p2) {
template<>
class scoped_nsobject<id> {
public:
- typedef id element_type;
-
explicit scoped_nsobject(id object = nil)
: object_(object) {
}