| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ | 5 #ifndef CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ |
| 6 #define CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ | 6 #define CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/process/process_handle.h" | 9 #include "base/process/process_handle.h" |
| 10 #include "components/metrics/proto/profiler_event.pb.h" | 10 #include "components/metrics/proto/profiler_event.pb.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 class DictionaryValue; | 13 class DictionaryValue; |
| 14 class FilePath; | 14 class FilePath; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace tracked_objects { | 17 namespace tracked_objects { |
| 18 struct ProcessDataPhaseSnapshot; | 18 struct ProcessDataPhaseSnapshot; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 34 metrics::ProfilerEventProto::TrackedObject::ProcessType process_type, | 34 metrics::ProfilerEventProto::TrackedObject::ProcessType process_type, |
| 35 base::DictionaryValue* dictionary); | 35 base::DictionaryValue* dictionary); |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 DISALLOW_COPY_AND_ASSIGN(TaskProfilerDataSerializer); | 38 DISALLOW_COPY_AND_ASSIGN(TaskProfilerDataSerializer); |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 } // namespace task_profiler | 41 } // namespace task_profiler |
| 42 | 42 |
| 43 #endif // CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ | 43 #endif // CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ |
| OLD | NEW |