Index: components/network_hints/renderer/dns_prefetch_queue.h |
diff --git a/components/network_hints/renderer/dns_prefetch_queue.h b/components/network_hints/renderer/dns_prefetch_queue.h |
index 7f5ac2f27e6f318521d6619e451226cedfdb7b9c..2e03f24e494974080ee641fa64f1ed6049c31e21 100644 |
--- a/components/network_hints/renderer/dns_prefetch_queue.h |
+++ b/components/network_hints/renderer/dns_prefetch_queue.h |
@@ -26,7 +26,10 @@ |
#include <string> |
-#include "base/basictypes.h" |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
+#include "base/macros.h" |
#include "base/memory/scoped_ptr.h" |
namespace network_hints { |
@@ -36,7 +39,7 @@ namespace network_hints { |
class DnsQueue { |
public: |
// BufferSize is a signed type used for indexing into a buffer. |
- typedef int32 BufferSize; |
+ typedef int32_t BufferSize; |
enum PushResult { SUCCESSFUL_PUSH, OVERFLOW_PUSH, REDUNDANT_PUSH }; |