Chromium Code Reviews| Index: webrtc/typedefs.h | 
| diff --git a/webrtc/typedefs.h b/webrtc/typedefs.h | 
| index 3034c7e74ae9fcc005a08884722d12b434405e42..885eb90e3e40006f71e8bc4aa4c6c2bce3d9231f 100644 | 
| --- a/webrtc/typedefs.h | 
| +++ b/webrtc/typedefs.h | 
| @@ -62,19 +62,8 @@ | 
| #define WEBRTC_CPU_DETECTION | 
| #endif | 
| -#if !defined(_MSC_VER) | 
| +// TODO(pbos): Use stdint.h directly from headers requiring _t int types. | 
| 
 
Henrik Grunell WebRTC
2015/09/22 10:35:54
Actually, I think it's fine including it implicitl
 
pbos-webrtc
2015/09/22 12:17:42
Updated TODO.
 
 | 
| #include <stdint.h> | 
| -#else | 
| -// Define C99 equivalent types, since pre-2010 MSVC doesn't provide stdint.h. | 
| -typedef signed char int8_t; | 
| -typedef signed short int16_t; | 
| -typedef signed int int32_t; | 
| -typedef __int64 int64_t; | 
| -typedef unsigned char uint8_t; | 
| -typedef unsigned short uint16_t; | 
| -typedef unsigned int uint32_t; | 
| -typedef unsigned __int64 uint64_t; | 
| -#endif | 
| // Annotate a function indicating the caller must examine the return value. | 
| // Use like: |