| Index: content/public/browser/trace_controller.h
|
| diff --git a/content/public/browser/trace_controller.h b/content/public/browser/trace_controller.h
|
| index 6bdff6c0c13d7c1c0d51a8bd6b7f8282d8bc42b5..922d8308951af8105ab419f151d457623f7f5b2d 100644
|
| --- a/content/public/browser/trace_controller.h
|
| +++ b/content/public/browser/trace_controller.h
|
| @@ -30,16 +30,17 @@ class TraceController {
|
| // or if another subscriber is tracing,
|
| // BeginTracing will return false meaning it failed.
|
| //
|
| - // |categories| is a comma-delimited list of category wildcards.
|
| - // A category can have an optional '-' prefix to make it an excluded category.
|
| + // |category_patterns| is a comma-delimited list of category wildcards.
|
| + // A category pattern can have an optional '-' prefix to exclude category
|
| + // groups that contain a matching category.
|
| // All the same rules apply above, so for example, having both included and
|
| - // excluded categories in the same list would not be supported.
|
| + // excluded category_patterns in the same list would not be supported.
|
| //
|
| // Example: BeginTracing("test_MyTest*");
|
| // Example: BeginTracing("test_MyTest*,test_OtherStuff");
|
| // Example: BeginTracing("-excluded_category1,-excluded_category2");
|
| virtual bool BeginTracing(TraceSubscriber* subscriber,
|
| - const std::string& categories) = 0;
|
| + const std::string& category_patterns) = 0;
|
|
|
| // Called by browser process to stop tracing events on all processes.
|
| //
|
|
|