Switch to standard integer types in net/.

BUG=488550
[email protected]

Review URL: https://codereview.chromium.org/1535363003 .

Cr-Commit-Position: refs/heads/master@{#366297}
diff --git a/net/base/priority_queue.h b/net/base/priority_queue.h
index 6b53ecc4..a955e6a 100644
--- a/net/base/priority_queue.h
+++ b/net/base/priority_queue.h
@@ -5,11 +5,14 @@
 #ifndef NET_BASE_PRIORITY_QUEUE_H_
 #define NET_BASE_PRIORITY_QUEUE_H_
 
+#include <stddef.h>
+#include <stdint.h>
+
 #include <list>
 #include <vector>
 
-#include "base/basictypes.h"
 #include "base/logging.h"
+#include "base/macros.h"
 #include "base/threading/non_thread_safe.h"
 #include "net/base/net_export.h"