| Index: content/browser/trace_message_filter.cc
|
| diff --git a/content/browser/trace_message_filter.cc b/content/browser/trace_message_filter.cc
|
| index d37ce12760cf0cf56c4e68505529a5374e1bf341..28dc81642fab3181f7880f0766186a855b6356aa 100644
|
| --- a/content/browser/trace_message_filter.cc
|
| +++ b/content/browser/trace_message_filter.cc
|
| @@ -55,11 +55,11 @@ 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::vector<std::string>& included_tag_patterns,
|
| + const std::vector<std::string>& excluded_tag_patterns) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - Send(new TracingMsg_BeginTracing(included_categories,
|
| - excluded_categories,
|
| + Send(new TracingMsg_BeginTracing(included_tag_patterns,
|
| + excluded_tag_patterns,
|
| base::TimeTicks::NowFromSystemTraceTime()));
|
| }
|
|
|
|
|