| Index: trace_event/malloc_dump_provider.cc | 
| diff --git a/trace_event/malloc_dump_provider.cc b/trace_event/malloc_dump_provider.cc | 
| index 98b53da3a3d2986ebbf5753c2c9d387259806264..7cdc34a3e4cbc2e5695b29fbfdba8256c17c2e97 100644 | 
| --- a/trace_event/malloc_dump_provider.cc | 
| +++ b/trace_event/malloc_dump_provider.cc | 
| @@ -39,7 +39,7 @@ bool MallocDumpProvider::OnMemoryDump(const MemoryDumpArgs& args, | 
| // dlmalloc the total is given by |arena| + |hblkhd|. | 
| // For more details see link: http://goo.gl/fMR8lF. | 
| MemoryAllocatorDump* outer_dump = pmd->CreateAllocatorDump("malloc"); | 
| -  outer_dump->AddScalar("heap_virtual_size", MemoryAllocatorDump::kUnitsBytes, | 
| +  outer_dump->AddScalar("virtual_size", MemoryAllocatorDump::kUnitsBytes, | 
| info.arena + info.hblkhd); | 
|  | 
| // Total allocated space is given by |uordblks|. | 
|  |