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

Unified Diff: chrome/test/automation/automation_proxy.cc

Issue 11823016: Trace category groups and category filter. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Tagged category support cleanup, parameter renaming, documentation updated. 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: chrome/test/automation/automation_proxy.cc
diff --git a/chrome/test/automation/automation_proxy.cc b/chrome/test/automation/automation_proxy.cc
index 8371d74f1d90be434a2d969712d70787d30a44d8..6d14ac2ca70e6f460d0192f87242a663949787d9 100644
--- a/chrome/test/automation/automation_proxy.cc
+++ b/chrome/test/automation/automation_proxy.cc
@@ -429,9 +429,9 @@ void AutomationProxy::ResetChannel() {
tracker_->put_channel(NULL);
}
-bool AutomationProxy::BeginTracing(const std::string& categories) {
+bool AutomationProxy::BeginTracing(const std::string& tag_patterns) {
bool result = false;
- bool send_success = Send(new AutomationMsg_BeginTracing(categories,
+ bool send_success = Send(new AutomationMsg_BeginTracing(tag_patterns,
&result));
return send_success && result;
}

Powered by Google App Engine
This is Rietveld 408576698