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

Unified Diff: content/browser/tracing/tracing_controller_impl.h

Issue 105893004: Sampling profiling thread should be joined in a FILE thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/tracing/tracing_controller_impl.h
diff --git a/content/browser/tracing/tracing_controller_impl.h b/content/browser/tracing/tracing_controller_impl.h
index 0f23b1bc7d89950c4759fb0ee06de59d3dec0390..41fa4e80257fc664a2c623c6d088ef5a729b1e4c 100644
--- a/content/browser/tracing/tracing_controller_impl.h
+++ b/content/browser/tracing/tracing_controller_impl.h
@@ -121,7 +121,22 @@ class TracingControllerImpl : public TracingController {
void OnWatchEventMatched();
+ void SetEnabledOnFileThread(const std::string& category_filter,
+ int options,
+ const base::Closure& callback);
+ void SetDisabledOnFileThread(const base::Closure& callback);
+ void OnEnableRecordingDone(const std::string& category_filter,
+ int trace_options,
+ const EnableRecordingDoneCallback& callback);
+ void OnDisableRecordingDone(const base::FilePath& result_file_path,
+ const TracingFileResultCallback& callback);
+ void OnEnableMonitoringDone(const std::string& category_filter,
+ int trace_options,
+ const EnableMonitoringDoneCallback& callback);
+ void OnDisableMonitoringDone(const DisableMonitoringDoneCallback& callback);
+
TraceMessageFilterSet trace_message_filters_;
+
// Pending acks for DisableRecording.
int pending_disable_recording_ack_count_;
TraceMessageFilterSet pending_disable_recording_filters_;

Powered by Google App Engine
This is Rietveld 408576698