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 "base/metrics/call_stack_profile_params.h" |
| 6 |
| 7 namespace base { |
| 8 |
| 9 CallStackProfileParams::CallStackProfileParams( |
| 10 base::CallStackProfileParams::Trigger trigger) |
| 11 : CallStackProfileParams(trigger, false) {} |
| 12 |
| 13 CallStackProfileParams::CallStackProfileParams( |
| 14 base::CallStackProfileParams::Trigger trigger, |
| 15 bool preserve_sample_ordering) |
| 16 : trigger(trigger), preserve_sample_ordering(preserve_sample_ordering) {} |
| 17 |
| 18 CallStackProfileParams::CallStackProfileParams() |
| 19 : CallStackProfileParams(base::CallStackProfileParams::UNKNOWN, false) {} |
| 20 |
| 21 } // namespace base |
OLD | NEW |