| Index: base/debug/task_annotator.h
|
| diff --git a/base/debug/task_annotator.h b/base/debug/task_annotator.h
|
| index b5cf6c216cc30afdec4486f00c8f24c11ae44816..443c71bf30169ded3042c90d07343710b4cdab42 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);
|
| };
|
|
|