| Index: third_party/WebKit/public/platform/WebProcessMemoryDump.h
|
| diff --git a/third_party/WebKit/public/platform/WebProcessMemoryDump.h b/third_party/WebKit/public/platform/WebProcessMemoryDump.h
|
| index c3cf99f01fb6107dd109dc4b6e4bf3645bb27b29..0d97baa724f134d1ec07d436e7bc0564dbd62ff2 100644
|
| --- a/third_party/WebKit/public/platform/WebProcessMemoryDump.h
|
| +++ b/third_party/WebKit/public/platform/WebProcessMemoryDump.h
|
| @@ -7,7 +7,6 @@
|
|
|
| #include "WebCommon.h"
|
| #include "WebMemoryAllocatorDump.h"
|
| -#include "WebMemoryDumpProvider.h"
|
| #include "WebString.h"
|
| #include "base/trace_event/heap_profiler_allocation_context.h"
|
|
|
| @@ -27,6 +26,15 @@ class TraceEventMemoryOverhead;
|
|
|
| namespace blink {
|
|
|
| +// Used to specify the type of memory dump the WebProcessMemoryDump should
|
| +// generate on dump requests.
|
| +// TODO(hajimehoshi): Remove this and use base::trace_event::
|
| +// MemoryDumpLevelOfDetail instead.
|
| +enum class WebMemoryDumpLevelOfDetail {
|
| + Light,
|
| + Detailed
|
| +};
|
| +
|
| // A container which holds all the dumps for the various allocators for a given
|
| // process. Embedders of WebMemoryDumpProvider are expected to populate a
|
| // WebProcessMemoryDump instance with the stats of their allocators.
|
|
|