summaryrefslogtreecommitdiff
path: root/chromium/content/browser/tracing/trace_message_filter.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/tracing/trace_message_filter.h')
-rw-r--r--chromium/content/browser/tracing/trace_message_filter.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/chromium/content/browser/tracing/trace_message_filter.h b/chromium/content/browser/tracing/trace_message_filter.h
index 22d91d914ad..94c435ed1b6 100644
--- a/chromium/content/browser/tracing/trace_message_filter.h
+++ b/chromium/content/browser/tracing/trace_message_filter.h
@@ -32,10 +32,6 @@ class TraceMessageFilter : public BrowserMessageFilter {
const base::trace_event::TraceConfig& trace_config);
void SendEndTracing();
void SendCancelTracing();
- void SendStartMonitoring(
- const base::trace_event::TraceConfig& trace_config);
- void SendStopMonitoring();
- void SendCaptureMonitoringSnapshot();
void SendGetTraceLogStatus();
void SendSetWatchEvent(const std::string& category_name,
const std::string& event_name);
@@ -50,11 +46,9 @@ class TraceMessageFilter : public BrowserMessageFilter {
// Message handlers.
void OnChildSupportsTracing();
void OnEndTracingAck(const std::vector<std::string>& known_categories);
- void OnCaptureMonitoringSnapshotAcked();
void OnWatchEventMatched();
void OnTraceLogStatusReply(const base::trace_event::TraceLogStatus& status);
void OnTraceDataCollected(const std::string& data);
- void OnMonitoringTraceDataCollected(const std::string& data);
void OnGlobalMemoryDumpRequest(
const base::trace_event::MemoryDumpRequestArgs& args);
void OnProcessMemoryDumpResponse(uint64_t dump_guid, bool success);
@@ -71,8 +65,6 @@ class TraceMessageFilter : public BrowserMessageFilter {
// Awaiting ack for previously sent SendEndTracing
bool is_awaiting_end_ack_;
- // Awaiting ack for previously sent SendCaptureMonitoringSnapshot
- bool is_awaiting_capture_monitoring_snapshot_ack_;
// Awaiting ack for previously sent SendGetTraceLogStatus
bool is_awaiting_buffer_percent_full_ack_;