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

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 7 years 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 ed3c8fd65193d00b65f7f4512446f3fd09c52069..2af3049b74b98fd639af8dbcbb4cbd4f908d14cc 100644
--- a/content/browser/tracing/tracing_controller_impl.h
+++ b/content/browser/tracing/tracing_controller_impl.h
@@ -117,6 +117,20 @@ 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);
+
TraceMessageFilterMap trace_message_filters_;
// Pending acks for DisableRecording.
int pending_disable_recording_ack_count_;

Powered by Google App Engine
This is Rietveld 408576698