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

Unified Diff: chrome/renderer/renderer_tracking.h

Issue 8588023: Collect profiler stats from browser child processes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
Index: chrome/renderer/renderer_tracking.h
===================================================================
--- chrome/renderer/renderer_tracking.h (revision 110669)
+++ chrome/renderer/renderer_tracking.h (working copy)
@@ -24,13 +24,15 @@
// RenderProcessObserver implementation.
virtual bool OnControlMessageReceived(const IPC::Message& message);
- void OnGetRendererTrackingData(int sequence_number);
+ void OnGetRendererProfilerData(int sequence_number,
+ const std::string& process_type);
- void OnSetTrackingStatus(bool enable);
+ void OnSetProfilerStatus(bool enable);
- // Extract tracking data from TrackedObjects and then send it off the
+ // Extract profiler data from TrackedObjects and then send it off the
// Browser process.
- void UploadAllTrackingData(int sequence_number);
+ void UploadAllProfilerData(int sequence_number,
+ const std::string& process_type);
ScopedRunnableMethodFactory<RendererTracking> renderer_tracking_factory_;

Powered by Google App Engine
This is Rietveld 408576698