| Index: base/trace_event/memory_allocator_dump_unittest.cc
|
| diff --git a/base/trace_event/memory_allocator_dump_unittest.cc b/base/trace_event/memory_allocator_dump_unittest.cc
|
| index 124de0def2e72456ec2e4bacba899260b857ff36..d1cfe91a4f1ee3301c3eaa4c0624e3bb84682271 100644
|
| --- a/base/trace_event/memory_allocator_dump_unittest.cc
|
| +++ b/base/trace_event/memory_allocator_dump_unittest.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "base/trace_event/memory_allocator_dump.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/format_macros.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "base/trace_event/memory_allocator_dump_guid.h"
|
| @@ -12,6 +14,7 @@
|
| #include "base/trace_event/process_memory_dump.h"
|
| #include "base/trace_event/trace_event_argument.h"
|
| #include "base/values.h"
|
| +#include "build/build_config.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace base {
|
| @@ -82,7 +85,7 @@ void CheckString(const MemoryAllocatorDump* dump,
|
| void CheckScalar(const MemoryAllocatorDump* dump,
|
| const std::string& name,
|
| const char* expected_units,
|
| - uint64 expected_value) {
|
| + uint64_t expected_value) {
|
| CheckString(dump, name, MemoryAllocatorDump::kTypeScalar, expected_units,
|
| StringPrintf("%" PRIx64, expected_value));
|
| }
|
|
|