| Index: base/trace_event/memory_allocator_dump.h
|
| diff --git a/base/trace_event/memory_allocator_dump.h b/base/trace_event/memory_allocator_dump.h
|
| index 6ad3d64110e241bb67d50a0be882e0aa2dd2e986..6c514fa6a62380b9ec6180792451a40b3a9dbbf9 100644
|
| --- a/base/trace_event/memory_allocator_dump.h
|
| +++ b/base/trace_event/memory_allocator_dump.h
|
| @@ -5,11 +5,13 @@
|
| #ifndef BASE_TRACE_EVENT_MEMORY_ALLOCATOR_DUMP_H_
|
| #define BASE_TRACE_EVENT_MEMORY_ALLOCATOR_DUMP_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "base/base_export.h"
|
| -#include "base/basictypes.h"
|
| #include "base/logging.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/trace_event/memory_allocator_dump_guid.h"
|
| #include "base/values.h"
|
| @@ -51,7 +53,7 @@ class BASE_EXPORT MemoryAllocatorDump {
|
| // AddScalar("number_of_freelist_entires", kUnitsObjects, 42)
|
| // - Other informational column (will not be auto-added in the UI)
|
| // AddScalarF("kittens_ratio", "ratio", 42.0f)
|
| - void AddScalar(const char* name, const char* units, uint64 value);
|
| + void AddScalar(const char* name, const char* units, uint64_t value);
|
| void AddScalarF(const char* name, const char* units, double value);
|
| void AddString(const char* name, const char* units, const std::string& value);
|
|
|
|
|