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 //------------------------------------------------------------------------------ |
| 10 // ProfilerDataAttributes methods and members. |
| 11 |
| 12 ProfilerDataAttributes::ProfilerDataAttributes( |
| 13 int profiling_phase, |
| 14 base::ProcessId process_id, |
| 15 content::ProcessType process_type, |
| 16 base::TimeTicks phase_start, |
| 17 base::TimeTicks phase_finish) |
| 18 : profiling_phase(profiling_phase), |
| 19 process_id(process_id), |
| 20 process_type(process_type), |
| 21 phase_start(phase_start), |
| 22 phase_finish(phase_finish) { |
| 23 } |
| 24 |
| 25 } // namespace metrics |
OLD | NEW |