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() {} | |
erikchen
2015/08/31 19:09:15
don't we need to initialize members?
Mike Wittman
2015/08/31 19:35:57
We do.
sydli
2015/08/31 20:09:42
Done.
| |
10 | |
11 CallStackProfileParams::CallStackProfileParams( | |
12 base::CallStackProfileParams::Trigger trigger) | |
13 : CallStackProfileParams(trigger, false) {} | |
14 | |
15 CallStackProfileParams::CallStackProfileParams( | |
16 base::CallStackProfileParams::Trigger trigger, | |
17 bool preserve_sample_ordering) | |
18 : trigger(trigger), preserve_sample_ordering(preserve_sample_ordering) {} | |
19 | |
20 } // namespace base | |
OLD | NEW |