Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: base/metrics/call_stack_profile_params.cc

Issue 1318733007: Refactor CallStackProfile::Params into base/ for use over IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698