OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "base/trace_event/trace_event_system_stats_monitor.h" | 5 #include "base/trace_event/trace_event_system_stats_monitor.h" |
6 | 6 |
7 #include "base/debug/leak_annotations.h" | 7 #include "base/debug/leak_annotations.h" |
8 #include "base/json/json_writer.h" | 8 #include "base/json/json_writer.h" |
9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
12 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
13 #include "base/strings/string_util.h" | 14 #include "base/strings/string_util.h" |
14 #include "base/thread_task_runner_handle.h" | 15 #include "base/thread_task_runner_handle.h" |
15 #include "base/threading/thread_local_storage.h" | 16 #include "base/threading/thread_local_storage.h" |
16 #include "base/trace_event/trace_event.h" | 17 #include "base/trace_event/trace_event.h" |
17 | 18 |
18 namespace base { | 19 namespace base { |
19 namespace trace_event { | 20 namespace trace_event { |
20 | 21 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 | 125 |
125 void AppendSystemProfileAsTraceFormat(const SystemMetrics& system_metrics, | 126 void AppendSystemProfileAsTraceFormat(const SystemMetrics& system_metrics, |
126 std::string* output) { | 127 std::string* output) { |
127 std::string tmp; | 128 std::string tmp; |
128 base::JSONWriter::Write(*system_metrics.ToValue(), &tmp); | 129 base::JSONWriter::Write(*system_metrics.ToValue(), &tmp); |
129 *output += tmp; | 130 *output += tmp; |
130 } | 131 } |
131 | 132 |
132 } // namespace trace_event | 133 } // namespace trace_event |
133 } // namespace base | 134 } // namespace base |
OLD | NEW |