| Index: components/metrics/call_stack_profile_params.cc
|
| diff --git a/components/metrics/call_stack_profile_params.cc b/components/metrics/call_stack_profile_params.cc
|
| index 71b7aac9265dda4d2c51e174fcf1548b0eb4d234..e937283616c3e4e859e7f2c447c671c3837eab53 100644
|
| --- a/components/metrics/call_stack_profile_params.cc
|
| +++ b/components/metrics/call_stack_profile_params.cc
|
| @@ -7,13 +7,16 @@
|
| namespace metrics {
|
|
|
| CallStackProfileParams::CallStackProfileParams()
|
| - : CallStackProfileParams(UNKNOWN) {}
|
| + : CallStackProfileParams(UNKNOWN_PROCESS, UNKNOWN_THREAD, UNKNOWN) {}
|
|
|
| -CallStackProfileParams::CallStackProfileParams(Trigger trigger)
|
| - : CallStackProfileParams(trigger, MAY_SHUFFLE) {}
|
| +CallStackProfileParams::CallStackProfileParams(Process process, Thread thread,
|
| + Trigger trigger)
|
| + : CallStackProfileParams(process, thread, trigger, MAY_SHUFFLE) {}
|
|
|
| -CallStackProfileParams::CallStackProfileParams(Trigger trigger,
|
| +CallStackProfileParams::CallStackProfileParams(Process process, Thread thread,
|
| + Trigger trigger,
|
| SampleOrderingSpec ordering_spec)
|
| - : trigger(trigger), ordering_spec(ordering_spec) {}
|
| + : process(process), thread(thread), trigger(trigger),
|
| + ordering_spec(ordering_spec) {}
|
|
|
| } // namespace metrics
|
|
|