| Index: gin/v8_isolate_memory_dump_provider.cc
|
| diff --git a/gin/v8_isolate_memory_dump_provider.cc b/gin/v8_isolate_memory_dump_provider.cc
|
| index 601937b45f0a2820b0789c14a90263016df9448b..fe8f4ce26c6d531a6a9f7b3b025775274b60abfa 100644
|
| --- a/gin/v8_isolate_memory_dump_provider.cc
|
| +++ b/gin/v8_isolate_memory_dump_provider.cc
|
| @@ -164,6 +164,9 @@ void V8IsolateMemoryDumpProvider::DumpHeapStatistics(
|
| malloc_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize,
|
| base::trace_event::MemoryAllocatorDump::kUnitsBytes,
|
| heap_statistics.malloced_memory());
|
| + malloc_dump->AddScalar("peak_size",
|
| + base::trace_event::MemoryAllocatorDump::kUnitsBytes,
|
| + heap_statistics.peak_malloced_memory());
|
| const char* system_allocator_name =
|
| base::trace_event::MemoryDumpManager::GetInstance()
|
| ->system_allocator_pool_name();
|
|
|