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 #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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 // Pending acks for DisableRecording. | 100 // Pending acks for DisableRecording. |
101 int pending_disable_recording_ack_count_; | 101 int pending_disable_recording_ack_count_; |
102 // Pending acks for CaptureMonitoringSnapshot. | 102 // Pending acks for CaptureMonitoringSnapshot. |
103 int pending_capture_monitoring_snapshot_ack_count_; | 103 int pending_capture_monitoring_snapshot_ack_count_; |
104 bool is_recording_; | 104 bool is_recording_; |
105 bool is_monitoring_; | 105 bool is_monitoring_; |
106 GetCategoriesDoneCallback pending_get_categories_done_callback_; | 106 GetCategoriesDoneCallback pending_get_categories_done_callback_; |
107 TracingFileResultCallback pending_disable_recording_done_callback_; | 107 TracingFileResultCallback pending_disable_recording_done_callback_; |
108 TracingFileResultCallback pending_capture_monitoring_snapshot_done_callback_; | 108 TracingFileResultCallback pending_capture_monitoring_snapshot_done_callback_; |
109 std::set<std::string> known_category_groups_; | 109 std::set<std::string> known_category_groups_; |
110 base::debug::TraceLog::Options trace_options_; | |
111 base::debug::CategoryFilter category_filter_; | 110 base::debug::CategoryFilter category_filter_; |
112 scoped_ptr<ResultFile> result_file_; | 111 scoped_ptr<ResultFile> result_file_; |
113 scoped_ptr<ResultFile> monitoring_snapshot_file_; | 112 scoped_ptr<ResultFile> monitoring_snapshot_file_; |
114 DISALLOW_COPY_AND_ASSIGN(TracingControllerImpl); | 113 DISALLOW_COPY_AND_ASSIGN(TracingControllerImpl); |
115 }; | 114 }; |
116 | 115 |
117 } // namespace content | 116 } // namespace content |
118 | 117 |
119 #endif // CONTENT_BROWSER_TRACING_TRACING_CONTROLLER_IMPL_H_ | 118 #endif // CONTENT_BROWSER_TRACING_TRACING_CONTROLLER_IMPL_H_ |
OLD | NEW |