| Index: components/crash/content/app/fallback_crash_handler_win.cc
|
| diff --git a/components/crash/content/app/fallback_crash_handler_win.cc b/components/crash/content/app/fallback_crash_handler_win.cc
|
| index a554673f6a606f2228480d3f15deba7ed1c949cc..2e3310d874dd335f9dfb607fad22f6bf481b198b 100644
|
| --- a/components/crash/content/app/fallback_crash_handler_win.cc
|
| +++ b/components/crash/content/app/fallback_crash_handler_win.cc
|
| @@ -9,6 +9,8 @@
|
|
|
| #include <algorithm>
|
| #include <map>
|
| +#include <memory>
|
| +#include <string>
|
| #include <vector>
|
|
|
| #include "base/command_line.h"
|
| @@ -52,6 +54,10 @@ void AcquireMemoryMetrics(const base::Process& process,
|
| crash_keys->insert(std::make_pair(
|
| "ProcessPeakWorkingSetSize",
|
| base::Uint64ToString(process_memory.PeakWorkingSetSize / kPageSize)));
|
| +
|
| + crash_keys->insert(std::make_pair(
|
| + "ProcessPeakPagefileUsage",
|
| + base::Uint64ToString(process_memory.PeakPagefileUsage / kPageSize)));
|
| }
|
|
|
| // Grab system commit memory. Also best effort.
|
|
|