| Index: content/public/browser/profiler_controller.h
|
| diff --git a/content/public/browser/profiler_controller.h b/content/public/browser/profiler_controller.h
|
| index 9627f5265a3bb1471a8461baef3da5931109c574..e9fbe6a149a8746e1ac6074f3fd75253792cef01 100644
|
| --- a/content/public/browser/profiler_controller.h
|
| +++ b/content/public/browser/profiler_controller.h
|
| @@ -39,18 +39,12 @@ class CONTENT_EXPORT ProfilerController {
|
| // Unregister the subscriber so that it will not be called when for example
|
| // OnProfilerDataCollected is returning profiler data from a child process.
|
| // Safe to call even if caller is not the current subscriber.
|
| - virtual void Unregister(ProfilerSubscriber* subscriber) = 0;
|
| + virtual void Unregister(const ProfilerSubscriber* subscriber) = 0;
|
|
|
| // Contact all processes and get their profiler data.
|
| virtual void GetProfilerData(int sequence_number) = 0;
|
| -
|
| - // Contact all processes and set profiler status to |enable|.
|
| - virtual void SetProfilerStatus(
|
| - tracked_objects::ThreadData::Status status) = 0;
|
| -
|
| };
|
|
|
| } // namespace content
|
|
|
| #endif // CONTENT_PUBLIC_BROWSER_PROFILER_CONTROLLER_H_
|
| -
|
|
|