Index: content/browser/tracing/trace_message_filter.h |
diff --git a/content/browser/tracing/trace_message_filter.h b/content/browser/tracing/trace_message_filter.h |
index 6c0359963849ebe391d05149d5f40045de46d1e1..9bde6b7c7ad44622ba0bf68b7ba718553be6a1a2 100644 |
--- a/content/browser/tracing/trace_message_filter.h |
+++ b/content/browser/tracing/trace_message_filter.h |
@@ -24,11 +24,13 @@ class TraceMessageFilter : public BrowserMessageFilter { |
void OnChannelClosing() override; |
bool OnMessageReceived(const IPC::Message& message) override; |
- void SendBeginTracing(const base::debug::CategoryFilter& category_filter_str, |
- const base::debug::TraceOptions& options); |
+ void SendBeginTracing( |
+ const base::trace_event::CategoryFilter& category_filter_str, |
+ const base::trace_event::TraceOptions& options); |
void SendEndTracing(); |
- void SendEnableMonitoring(const base::debug::CategoryFilter& category_filter, |
- const base::debug::TraceOptions& options); |
+ void SendEnableMonitoring( |
+ const base::trace_event::CategoryFilter& category_filter, |
+ const base::trace_event::TraceOptions& options); |
void SendDisableMonitoring(); |
void SendCaptureMonitoringSnapshot(); |
void SendGetTraceLogStatus(); |
@@ -45,7 +47,7 @@ class TraceMessageFilter : public BrowserMessageFilter { |
void OnEndTracingAck(const std::vector<std::string>& known_categories); |
void OnCaptureMonitoringSnapshotAcked(); |
void OnWatchEventMatched(); |
- void OnTraceLogStatusReply(const base::debug::TraceLogStatus& status); |
+ void OnTraceLogStatusReply(const base::trace_event::TraceLogStatus& status); |
void OnTraceDataCollected(const std::string& data); |
void OnMonitoringTraceDataCollected(const std::string& data); |