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

Unified Diff: content/public/browser/profiler_controller.h

Issue 9702014: [UMA] Use proper C++ objects to serialize tracked_objects across process boundaries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix yet another IWYU for chromeos/ (take 4) Created 8 years, 8 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
« no previous file with comments | « content/common/child_thread.cc ('k') | content/public/browser/profiler_subscriber.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
-
« no previous file with comments | « content/common/child_thread.cc ('k') | content/public/browser/profiler_subscriber.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698