summaryrefslogtreecommitdiff
path: root/typedefs.h
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-02 09:11:20 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-02 09:11:20 +0000
commite422d12bff9497a74096fdfea5abce1abe3f87e6 (patch)
tree62dcc2c55433dc314666985c12feb7d1f8fb5893 /typedefs.h
parentbe6ad8818bc5c131c0907a68cfe5654b3de66fd3 (diff)
downloadwebrtc-e422d12bff9497a74096fdfea5abce1abe3f87e6.tar.gz
Remove traces of deprecated WebRtc_Word types.
BUG=314 R=tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1385004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@3933 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'typedefs.h')
-rw-r--r--typedefs.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/typedefs.h b/typedefs.h
index 0d2dfcd9..7edb12c0 100644
--- a/typedefs.h
+++ b/typedefs.h
@@ -75,17 +75,6 @@ typedef unsigned int uint32_t;
typedef unsigned __int64 uint64_t;
#endif
-// TODO(andrew): remove WebRtc_ types:
-// http://code.google.com/p/webrtc/issues/detail?id=314
-typedef int8_t WebRtc_Word8;
-typedef int16_t WebRtc_Word16;
-typedef int32_t WebRtc_Word32;
-typedef int64_t WebRtc_Word64;
-typedef uint8_t WebRtc_UWord8;
-typedef uint16_t WebRtc_UWord16;
-typedef uint32_t WebRtc_UWord32;
-typedef uint64_t WebRtc_UWord64;
-
// Borrowed from Chromium's base/compiler_specific.h.
// Annotate a virtual method indicating it must be overriding a virtual
// method in the parent class.