| Index: content/public/browser/tracing_controller.h
|
| diff --git a/content/public/browser/tracing_controller.h b/content/public/browser/tracing_controller.h
|
| index 8c548dc0e8e70ce9ef20e0678468ae8b6a0760b5..0cbed7018d64edb5e6a0c9e3b8f40cf5179fc723 100644
|
| --- a/content/public/browser/tracing_controller.h
|
| +++ b/content/public/browser/tracing_controller.h
|
| @@ -87,8 +87,8 @@ class TracingController {
|
| // |options| controls what kind of tracing is enabled.
|
| typedef base::Callback<void()> EnableRecordingDoneCallback;
|
| virtual bool EnableRecording(
|
| - const base::debug::CategoryFilter& category_filter,
|
| - const base::debug::TraceOptions& trace_options,
|
| + const base::trace_event::CategoryFilter& category_filter,
|
| + const base::trace_event::TraceOptions& trace_options,
|
| const EnableRecordingDoneCallback& callback) = 0;
|
|
|
| // Stop recording on all processes.
|
| @@ -124,8 +124,8 @@ class TracingController {
|
| // |options| controls what kind of tracing is enabled.
|
| typedef base::Callback<void()> EnableMonitoringDoneCallback;
|
| virtual bool EnableMonitoring(
|
| - const base::debug::CategoryFilter& category_filter,
|
| - const base::debug::TraceOptions& trace_options,
|
| + const base::trace_event::CategoryFilter& category_filter,
|
| + const base::trace_event::TraceOptions& trace_options,
|
| const EnableMonitoringDoneCallback& callback) = 0;
|
|
|
| // Stop monitoring on all processes.
|
| @@ -139,8 +139,8 @@ class TracingController {
|
| // Get the current monitoring configuration.
|
| virtual void GetMonitoringStatus(
|
| bool* out_enabled,
|
| - base::debug::CategoryFilter* out_category_filter,
|
| - base::debug::TraceOptions* out_trace_options) = 0;
|
| + base::trace_event::CategoryFilter* out_category_filter,
|
| + base::trace_event::TraceOptions* out_trace_options) = 0;
|
|
|
| // Get the current monitoring traced data.
|
| //
|
|
|