Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: content/browser/tracing/tracing_controller_impl.h

Issue 65343006: Use TracingController for startup tracing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/browser/tracing/tracing_controller_browsertest.cc ('k') | content/browser/tracing/tracing_controller_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698