| Index: chrome/browser/task_profiler/task_profiler_data_serializer.cc
|
| diff --git a/chrome/browser/task_profiler/task_profiler_data_serializer.cc b/chrome/browser/task_profiler/task_profiler_data_serializer.cc
|
| index 9a6b733980a10e94bfdb51e39adbca91347c5bd5..5d5e851428a788bf427c2fb13f0596bdb9bfa870 100644
|
| --- a/chrome/browser/task_profiler/task_profiler_data_serializer.cc
|
| +++ b/chrome/browser/task_profiler/task_profiler_data_serializer.cc
|
| @@ -64,6 +64,14 @@ void DeathDataSnapshotToValue(const DeathDataSnapshot& death_data,
|
| dictionary->SetInteger("queue_ms", death_data.queue_duration_sum);
|
| dictionary->SetInteger("queue_ms_max", death_data.queue_duration_max);
|
| dictionary->SetInteger("queue_ms_sample", death_data.queue_duration_sample);
|
| +
|
| + dictionary->SetInteger("alloc_ops", death_data.alloc_ops);
|
| + dictionary->SetInteger("free_ops", death_data.free_ops);
|
| + dictionary->SetInteger("allocated_bytes", death_data.allocated_bytes);
|
| + dictionary->SetInteger("freed_bytes", death_data.freed_bytes);
|
| + dictionary->SetInteger("alloc_overhead_bytes",
|
| + death_data.alloc_overhead_bytes);
|
| + dictionary->SetInteger("max_allocated_bytes", death_data.max_allocated_bytes);
|
| }
|
|
|
| // Re-serializes the |snapshot| into |dictionary|.
|
|
|