Chromium Code Reviews| 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..39601f106695e6c9658d03523acb78acb9816f7f 100644 |
| --- a/content/public/browser/trace_controller.h |
| +++ b/content/public/browser/trace_controller.h |
| @@ -5,6 +5,7 @@ |
| #ifndef CONTENT_PUBLIC_BROWSER_TRACE_CONTROLLER_H_ |
| #define CONTENT_PUBLIC_BROWSER_TRACE_CONTROLLER_H_ |
| +#include "base/debug/trace_event.h" |
| #include "content/common/content_export.h" |
| namespace content { |
| @@ -35,11 +36,14 @@ class TraceController { |
| // All the same rules apply above, so for example, having both included and |
| // excluded categories in the same list would not be supported. |
| // |
| + // |mode| is the tracing mode begin used. |
|
Jói
2013/02/22 15:11:30
begin -> being
dsinclair
2013/02/22 15:16:00
Done.
|
| + // |
| // 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& categories, |
| + int options) = 0; |
| // Called by browser process to stop tracing events on all processes. |
| // |