| Index: components/metrics/proto/call_stack_profile.proto
|
| diff --git a/components/metrics/proto/call_stack_profile.proto b/components/metrics/proto/call_stack_profile.proto
|
| index e41b3390224ab8561f2285d7bd36217d990475ef..4c601c49b2d315f64e6645b57a1b0097788230f5 100644
|
| --- a/components/metrics/proto/call_stack_profile.proto
|
| +++ b/components/metrics/proto/call_stack_profile.proto
|
| @@ -12,6 +12,8 @@ option java_package = "org.chromium.components.metrics";
|
|
|
| package metrics;
|
|
|
| +import "execution_context.proto";
|
| +
|
| // Next tag: 5
|
| message CallStackProfile {
|
| // Describes an entry in the callstack.
|
| @@ -32,6 +34,12 @@ message CallStackProfile {
|
|
|
| // Number of times this stack signature occurs.
|
| optional int64 count = 2;
|
| +
|
| + // This repeating field indicates the current phase of the system such as
|
| + // whether it is in startup, general operation, or shutdown. It is a full
|
| + // list with the first sample and after that each indicates only the new
|
| + // phases that are achieved.
|
| + repeated ProcessPhase process_phase = 3;
|
| }
|
|
|
| // Uniquely identifies a module.
|
|
|