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

Unified Diff: chrome/common/render_messages.h

Issue 8413009: Changes to upload tracked_objects data from all renderer (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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
Index: chrome/common/render_messages.h
===================================================================
--- chrome/common/render_messages.h (revision 107389)
+++ chrome/common/render_messages.h (working copy)
@@ -244,6 +244,10 @@
IPC_MESSAGE_CONTROL1(ChromeViewMsg_GetRendererHistograms,
int /* sequence number of Renderer Histograms. */)
+// Asks the renderer to send back tracked data (ThreadData in tracked_objects).
+IPC_MESSAGE_CONTROL1(ChromeViewMsg_GetRendererTrackedData,
+ int /* sequence number of Renderer tracked data. */)
+
// Tells the renderer to create a FieldTrial, and by using a 100% probability
// for the FieldTrial, forces the FieldTrial to have assigned group name.
IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetFieldTrialGroup,
@@ -495,6 +499,11 @@
int, /* sequence number of Renderer Histograms. */
std::vector<std::string>)
+// Send back tracked data (ThreadData in tracked_objects) as a pickled string.
+IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RendererTrackedData,
+ int, /* sequence number of Renderer tracked data. */
+ std::string)
jar (doing other things) 2011/10/30 08:04:19 nit: Style seems to include comment in arg list.
ramant (doing other things) 2011/11/01 00:52:15 Done.
+
#if defined USE_TCMALLOC
// Send back tcmalloc stats output.
IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_RendererTcmalloc,

Powered by Google App Engine
This is Rietveld 408576698