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

Unified Diff: components/tracing/child_trace_message_filter.h

Issue 23556003: Implement about:tracing UI for the sampling profiler (Chromium part) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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
« no previous file with comments | « base/debug/trace_event_unittest.cc ('k') | components/tracing/child_trace_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/tracing/child_trace_message_filter.h
diff --git a/components/tracing/child_trace_message_filter.h b/components/tracing/child_trace_message_filter.h
index 9631ced7b3487a40f18c306dc8272d18f46b508e..df514d4fc739cc1f4c89dc478d846a9f77dcbe1a 100644
--- a/components/tracing/child_trace_message_filter.h
+++ b/components/tracing/child_trace_message_filter.h
@@ -34,6 +34,9 @@ class ChildTraceMessageFilter : public IPC::ChannelProxy::MessageFilter {
base::TimeTicks browser_time,
int mode);
void OnEndTracing();
+ void OnBeginContinuousSamplingTracing(base::TimeTicks browser_time);
+ void OnEndContinuousSamplingTracing();
+ void OnShowContinuousSamplingTracing();
void OnGetTraceBufferPercentFull();
void OnSetWatchEvent(const std::string& category_name,
const std::string& event_name);
@@ -42,6 +45,8 @@ class ChildTraceMessageFilter : public IPC::ChannelProxy::MessageFilter {
// Callback from trace subsystem.
void OnTraceDataCollected(
const scoped_refptr<base::RefCountedString>& events_str_ptr);
+ void OnContinuousSamplingTraceDataCollected(
+ const scoped_refptr<base::RefCountedString>& events_str_ptr);
void OnTraceNotification(int notification);
IPC::Channel* channel_;
« no previous file with comments | « base/debug/trace_event_unittest.cc ('k') | components/tracing/child_trace_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698