Index: cc/debug/devtools_instrumentation.h |
diff --git a/cc/debug/devtools_instrumentation.h b/cc/debug/devtools_instrumentation.h |
index 3a285799840c54577af3a15a381ba0e8c798f187..f6eacdc12d4973c7b871aa67127b7f6ad9ee323a 100644 |
--- a/cc/debug/devtools_instrumentation.h |
+++ b/cc/debug/devtools_instrumentation.h |
@@ -5,6 +5,9 @@ |
#ifndef CC_DEBUG_DEVTOOLS_INSTRUMENTATION_H_ |
#define CC_DEBUG_DEVTOOLS_INSTRUMENTATION_H_ |
+#include <stdint.h> |
+ |
+#include "base/macros.h" |
#include "base/trace_event/trace_event.h" |
#include "base/trace_event/trace_event_argument.h" |
@@ -55,7 +58,7 @@ class ScopedImageDecodeTask { |
explicit ScopedImageDecodeTask(const void* imagePtr) { |
TRACE_EVENT_BEGIN1(internal::kCategory, internal::kImageDecodeTask, |
internal::kPixelRefId, |
- reinterpret_cast<uint64>(imagePtr)); |
+ reinterpret_cast<uint64_t>(imagePtr)); |
} |
~ScopedImageDecodeTask() { |
TRACE_EVENT_END0(internal::kCategory, internal::kImageDecodeTask); |