diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 16:43:19 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 16:43:19 +0000 |
commit | d7f205d44f8d5c3c0289c5b889467695f6da51fc (patch) | |
tree | fac93483294c6fd4ef8e2664e867edd18281952b /base | |
parent | 8920e9f51f3359b17b77e32014402f7e12f6c249 (diff) | |
download | chromium_src-d7f205d44f8d5c3c0289c5b889467695f6da51fc.zip chromium_src-d7f205d44f8d5c3c0289c5b889467695f6da51fc.tar.gz chromium_src-d7f205d44f8d5c3c0289c5b889467695f6da51fc.tar.bz2 |
Delete unused stuff from basictypes.h.
Review URL: http://codereview.chromium.org/99348
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15208 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/basictypes.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/base/basictypes.h b/base/basictypes.h index e596ab8..ae87fc0 100644 --- a/base/basictypes.h +++ b/base/basictypes.h @@ -62,19 +62,6 @@ const int32 kint32max = (( int32) 0x7FFFFFFF); const int64 kint64min = (( int64) GG_LONGLONG(0x8000000000000000)); const int64 kint64max = (( int64) GG_LONGLONG(0x7FFFFFFFFFFFFFFF)); -// id for odp categories -typedef uint32 CatId; -const CatId kIllegalCatId = static_cast<CatId>(0); - -typedef uint32 TermId; -const TermId kIllegalTermId = static_cast<TermId>(0); - -typedef uint32 HostId; -const HostId kIllegalHostId = static_cast<HostId>(0); - -typedef uint32 DomainId; -const DomainId kIllegalDomainId = static_cast<DomainId>(0); - // A macro to disallow the copy constructor and operator= functions // This should be used in the private: declarations for a class #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ |