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

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, 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
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/chrome_content_renderer_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages.h
===================================================================
--- chrome/common/render_messages.h (revision 108557)
+++ chrome/common/render_messages.h (working copy)
@@ -257,6 +257,14 @@
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. */)
+
+// Asks the renderer to set the tracking status.
+IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetTrackingStatus,
+ bool /* tracking status */)
+
// 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,
@@ -512,6 +520,16 @@
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 /* pickled Value containing profile data. */)
+
+// Check if tracking is enabled in browser process or not. Browser process
+// responds by sending ChromeViewMsg_SetTrackingStatus message to the process
+// that sent this message.
+IPC_MESSAGE_CONTROL0(ChromeViewHostMsg_IsTrackingEnabled)
+
#if defined USE_TCMALLOC
// Send back tcmalloc stats output.
IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_RendererTcmalloc,
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/chrome_content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698