| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/metrics/call_stack_profile_params.h" | |
| 6 | |
| 7 namespace metrics { | |
| 8 | |
| 9 CallStackProfileParams::CallStackProfileParams() | |
| 10 : CallStackProfileParams(UNKNOWN_PROCESS, UNKNOWN_THREAD, UNKNOWN) {} | |
| 11 | |
| 12 CallStackProfileParams::CallStackProfileParams(Process process, Thread thread, | |
| 13 Trigger trigger) | |
| 14 : CallStackProfileParams(process, thread, trigger, MAY_SHUFFLE) {} | |
| 15 | |
| 16 CallStackProfileParams::CallStackProfileParams(Process process, Thread thread, | |
| 17 Trigger trigger, | |
| 18 SampleOrderingSpec ordering_spec) | |
| 19 : process(process), thread(thread), trigger(trigger), | |
| 20 ordering_spec(ordering_spec) {} | |
| 21 | |
| 22 } // namespace metrics | |
| OLD | NEW |