OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 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/profiler/tracking_synchronizer_observer.h" |
| 6 |
| 7 namespace metrics { |
| 8 |
| 9 ProfilerDataAttributes::ProfilerDataAttributes( |
| 10 int profiling_phase, |
| 11 base::ProcessId process_id, |
| 12 content::ProcessType process_type, |
| 13 base::TimeTicks phase_start, |
| 14 base::TimeTicks phase_finish) |
| 15 : profiling_phase(profiling_phase), |
| 16 process_id(process_id), |
| 17 process_type(process_type), |
| 18 phase_start(phase_start), |
| 19 phase_finish(phase_finish) { |
| 20 } |
| 21 |
| 22 } // namespace metrics |
OLD | NEW |