Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: net/base/priority_queue.h

Issue 1158923005: Use the exact-width integer types defined in <stdint.h> rather than (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak comments. Exclude mime_sniffer*. Rebase. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/priority_queue.h
diff --git a/net/base/priority_queue.h b/net/base/priority_queue.h
index 9b17d61b21e6ef6c8690b62e2edd9c63cf830e02..6b53ecc4fe8ea5b7cc34dc9e0b3d6bae0c00d4f7 100644
--- a/net/base/priority_queue.h
+++ b/net/base/priority_queue.h
@@ -39,7 +39,7 @@ class PriorityQueue : public base::NonThreadSafe {
#endif
public:
- typedef uint32 Priority;
+ typedef uint32_t Priority;
// A pointer to a value stored in the queue. The pointer becomes invalid
// when the queue is destroyed or cleared, or the value is erased.

Powered by Google App Engine
This is Rietveld 408576698