Index: net/cert/nss_cert_database.h |
diff --git a/net/cert/nss_cert_database.h b/net/cert/nss_cert_database.h |
index b68a56dc697c90dc70ef7ab4e2c576045d847592..42447f95a733b1b7efed148d9cf5769f3f56be0d 100644 |
--- a/net/cert/nss_cert_database.h |
+++ b/net/cert/nss_cert_database.h |
@@ -5,11 +5,12 @@ |
#ifndef NET_CERT_NSS_CERT_DATABASE_H_ |
#define NET_CERT_NSS_CERT_DATABASE_H_ |
+#include <stdint.h> |
#include <string> |
#include <vector> |
-#include "base/basictypes.h" |
#include "base/callback_forward.h" |
+#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
#include "base/memory/weak_ptr.h" |
#include "base/strings/string16.h" |
@@ -85,7 +86,7 @@ class NET_EXPORT NSSCertDatabase { |
// Use TRUST_DEFAULT to inherit trust as normal. |
// NOTE: The actual constants are defined using an enum instead of static |
// consts due to compilation/linkage constraints with template functions. |
- typedef uint32 TrustBits; |
+ typedef uint32_t TrustBits; |
enum { |
TRUST_DEFAULT = 0, |
TRUSTED_SSL = 1 << 0, |