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

Unified Diff: content/browser/trace_message_filter.cc

Issue 11823016: Trace category groups and category filter. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor edits from previous changeset, mainly fixing line exceeding 80 chars. Created 7 years, 11 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
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()));
}

Powered by Google App Engine
This is Rietveld 408576698