Index: content/browser/tracing/trace_message_filter.cc |
diff --git a/content/browser/tracing/trace_message_filter.cc b/content/browser/tracing/trace_message_filter.cc |
index 8894cff5a33079966c6cfabf8fe1f371cbbed23b..e75d786142d90307958bba370a3456efc0f52e66 100644 |
--- a/content/browser/tracing/trace_message_filter.cc |
+++ b/content/browser/tracing/trace_message_filter.cc |
@@ -55,11 +55,10 @@ bool TraceMessageFilter::OnMessageReceived(const IPC::Message& message, |
} |
void TraceMessageFilter::SendBeginTracing( |
- const std::vector<std::string>& included_categories, |
- const std::vector<std::string>& excluded_categories, |
+ const std::string& category_filter_str, |
base::debug::TraceLog::Options options) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
- Send(new TracingMsg_BeginTracing(included_categories, excluded_categories, |
+ Send(new TracingMsg_BeginTracing(category_filter_str, |
base::TimeTicks::NowFromSystemTraceTime(), |
options)); |
} |