diff options
Diffstat (limited to 'base/debug/task_annotator.h')
-rw-r--r-- | base/debug/task_annotator.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/base/debug/task_annotator.h b/base/debug/task_annotator.h index b5cf6c2..443c71b 100644 --- a/base/debug/task_annotator.h +++ b/base/debug/task_annotator.h @@ -5,8 +5,10 @@ #ifndef BASE_DEBUG_TASK_ANNOTATOR_H_ #define BASE_DEBUG_TASK_ANNOTATOR_H_ +#include <stdint.h> + #include "base/base_export.h" -#include "base/basictypes.h" +#include "base/macros.h" namespace base { struct PendingTask; @@ -32,7 +34,7 @@ class BASE_EXPORT TaskAnnotator { // Creates a process-wide unique ID to represent this task in trace events. // This will be mangled with a Process ID hash to reduce the likelyhood of // colliding with TaskAnnotator pointers on other processes. - uint64 GetTaskTraceID(const PendingTask& task) const; + uint64_t GetTaskTraceID(const PendingTask& task) const; DISALLOW_COPY_AND_ASSIGN(TaskAnnotator); }; |