commit | 13fc893acb88fdd82ad7eea72f9499d123bf5a89 | [log] [tgz] |
---|---|---|
author | Avi Drissman <[email protected]> | Sun Dec 20 04:40:46 2015 |
committer | Avi Drissman <[email protected]> | Sun Dec 20 04:42:28 2015 |
tree | 76aa2bdaa56cb2d05bbf2a6af57e440f9661c7f0 | |
parent | e40cbca89ebc83b5bef0f892d80604b00a98abc8 [diff] [blame] |
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"