| Index: components/metrics/public/interfaces/call_stack_profile_collector.mojom
|
| diff --git a/components/metrics/public/interfaces/call_stack_profile_collector.mojom b/components/metrics/public/interfaces/call_stack_profile_collector.mojom
|
| index 6c8f04216c63b74c5a327ceee279a304335b49f2..2a66be1f5564b8af15df0897156ff27631ca21f9 100644
|
| --- a/components/metrics/public/interfaces/call_stack_profile_collector.mojom
|
| +++ b/components/metrics/public/interfaces/call_stack_profile_collector.mojom
|
| @@ -19,9 +19,14 @@ struct CallStackFrame {
|
| uint64 module_index;
|
| };
|
|
|
| +struct CallStackSample {
|
| + array<CallStackFrame> frames;
|
| + uint32 process_phases;
|
| +};
|
| +
|
| struct CallStackProfile {
|
| array<CallStackModule> modules;
|
| - array<array<CallStackFrame>> samples;
|
| + array<CallStackSample> samples;
|
| mojo.common.mojom.TimeDelta profile_duration;
|
| mojo.common.mojom.TimeDelta sampling_period;
|
| };
|
|
|