OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef CONTENT_BROWSER_TRACING_TRACING_CONTROLLER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_TRACING_TRACING_CONTROLLER_IMPL_H_ |
6 #define CONTENT_BROWSER_TRACING_TRACING_CONTROLLER_IMPL_H_ | 6 #define CONTENT_BROWSER_TRACING_TRACING_CONTROLLER_IMPL_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 GetTraceBufferUsageCallback pending_trace_buffer_usage_callback_; | 192 GetTraceBufferUsageCallback pending_trace_buffer_usage_callback_; |
193 | 193 |
194 std::string watch_category_name_; | 194 std::string watch_category_name_; |
195 std::string watch_event_name_; | 195 std::string watch_event_name_; |
196 WatchEventCallback watch_event_callback_; | 196 WatchEventCallback watch_event_callback_; |
197 | 197 |
198 std::set<std::string> known_category_groups_; | 198 std::set<std::string> known_category_groups_; |
199 std::set<TracingUI*> tracing_uis_; | 199 std::set<TracingUI*> tracing_uis_; |
200 scoped_refptr<TraceDataSink> trace_data_sink_; | 200 scoped_refptr<TraceDataSink> trace_data_sink_; |
201 scoped_refptr<TraceDataSink> monitoring_data_sink_; | 201 scoped_refptr<TraceDataSink> monitoring_data_sink_; |
| 202 |
202 DISALLOW_COPY_AND_ASSIGN(TracingControllerImpl); | 203 DISALLOW_COPY_AND_ASSIGN(TracingControllerImpl); |
203 }; | 204 }; |
204 | 205 |
205 } // namespace content | 206 } // namespace content |
206 | 207 |
207 #endif // CONTENT_BROWSER_TRACING_TRACING_CONTROLLER_IMPL_H_ | 208 #endif // CONTENT_BROWSER_TRACING_TRACING_CONTROLLER_IMPL_H_ |
OLD | NEW |