Index: components/metrics/profiler/tracking_synchronizer_observer.cc |
diff --git a/components/metrics/profiler/tracking_synchronizer_observer.cc b/components/metrics/profiler/tracking_synchronizer_observer.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..abe0c0973f0b936e2a82cdbc30995a853078db92 |
--- /dev/null |
+++ b/components/metrics/profiler/tracking_synchronizer_observer.cc |
@@ -0,0 +1,25 @@ |
+// Copyright (c) 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "components/metrics/profiler/tracking_synchronizer_observer.h" |
+ |
+namespace metrics { |
+ |
+//------------------------------------------------------------------------------ |
+// ProfilerDataAttributes methods and members. |
Ilya Sherman
2015/04/17 02:14:26
nit: This comment does not seem very necessary in
vadimt
2015/04/17 16:15:51
Done.
|
+ |
+ProfilerDataAttributes::ProfilerDataAttributes( |
+ int profiling_phase, |
+ base::ProcessId process_id, |
+ content::ProcessType process_type, |
+ base::TimeTicks phase_start, |
+ base::TimeTicks phase_finish) |
+ : profiling_phase(profiling_phase), |
+ process_id(process_id), |
+ process_type(process_type), |
+ phase_start(phase_start), |
+ phase_finish(phase_finish) { |
+} |
+ |
+} // namespace metrics |