Chromium Code Reviews| 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..3f3fe8ff16258a116c6c48883189e00f762f6fed 100644 |
| --- a/components/metrics/public/interfaces/call_stack_profile_collector.mojom |
| +++ b/components/metrics/public/interfaces/call_stack_profile_collector.mojom |
| @@ -19,9 +19,15 @@ struct CallStackFrame { |
| uint64 module_index; |
| }; |
| +struct CallStackSample { |
| + array<CallStackFrame> frames; |
| + int32 process_phases; |
|
Mike Wittman
2016/10/24 22:28:14
uint32
|
| + int32 current_activities; |
| +}; |
| + |
| struct CallStackProfile { |
| array<CallStackModule> modules; |
| - array<array<CallStackFrame>> samples; |
| + array<CallStackSample> samples; |
| mojo.common.mojom.TimeDelta profile_duration; |
| mojo.common.mojom.TimeDelta sampling_period; |
| }; |