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

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

Issue 12150004: Category group support/Renamings. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: More renamings and category filter cleanups. Created 7 years, 10 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..2c9dc532a9aaad2ec87b10c69d96d8fc94e47beb 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& category_patterns) {
bool result = false;
- bool send_success = Send(new AutomationMsg_BeginTracing(categories,
+ bool send_success = Send(new AutomationMsg_BeginTracing(category_patterns,
&result));
return send_success && result;
}

Powered by Google App Engine
This is Rietveld 408576698