| 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 6b26c3129621b94749c913171e0e85a76955ab37..5df638836df80683cb1b1d9fb71bb2d45145685e 100644
|
| --- a/gin/v8_isolate_memory_dump_provider.cc
|
| +++ b/gin/v8_isolate_memory_dump_provider.cc
|
| @@ -160,6 +160,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.malloced_peak_memory());
|
| const char* system_allocator_name =
|
| base::trace_event::MemoryDumpManager::GetInstance()
|
| ->system_allocator_pool_name();
|
|
|