| Index: services/resource_coordinator/public/interfaces/memory/memory_instrumentation.mojom
|
| diff --git a/services/resource_coordinator/public/interfaces/memory/memory_instrumentation.mojom b/services/resource_coordinator/public/interfaces/memory/memory_instrumentation.mojom
|
| index 9afb800036e2e7a550915ab9019deaaac883525c..160ec1241eeac319982f97580c5506eaee780fd4 100644
|
| --- a/services/resource_coordinator/public/interfaces/memory/memory_instrumentation.mojom
|
| +++ b/services/resource_coordinator/public/interfaces/memory/memory_instrumentation.mojom
|
| @@ -25,8 +25,17 @@ struct RequestArgs {
|
| LevelOfDetail level_of_detail;
|
| };
|
|
|
| +struct PlatformPrivateFootprint {
|
| + uint64 phys_footprint_bytes = 0;
|
| + uint64 internal_bytes = 0;
|
| + uint64 compressed_bytes = 0;
|
| + uint64 rss_anon_bytes = 0;
|
| + uint64 vm_swap_bytes = 0;
|
| +};
|
| +
|
| struct OSMemDump {
|
| uint32 resident_set_kb = 0;
|
| + PlatformPrivateFootprint platform_private_footprint;
|
| };
|
|
|
| struct ChromeMemDump {
|
|
|