| Index: webrtc/base/nssidentity.h
|
| diff --git a/webrtc/base/nssidentity.h b/webrtc/base/nssidentity.h
|
| index a28ce62ba16469e305e2aa5b167de05fe7c06cd6..72cba7c7ca2d1f857a5cb17778b1e0a3ce807e23 100644
|
| --- a/webrtc/base/nssidentity.h
|
| +++ b/webrtc/base/nssidentity.h
|
| @@ -13,13 +13,14 @@
|
|
|
| #include <string>
|
|
|
| -// Hack: Define+undefine int64 and uint64 to avoid typedef conflict with NSS.
|
| +// Hack: Define+undefine int64_t and uint64_t to avoid typedef conflict with
|
| +// NSS.
|
| // TODO(kjellander): Remove when webrtc:4497 is completed.
|
| -#define uint64 foo_uint64
|
| -#define int64 foo_int64
|
| +#define uint64_t foo_uint64
|
| +#define int64_t foo_int64
|
| #include "cert.h"
|
| -#undef uint64
|
| -#undef int64
|
| +#undef uint64_t
|
| +#undef int64_t
|
| #include "nspr.h"
|
| #include "hasht.h"
|
| #include "keythi.h"
|
|
|