Index: content/common/child_process_messages.h |
diff --git a/content/common/child_process_messages.h b/content/common/child_process_messages.h |
index 9476f1a5163504c4ce7a4eff46f3016a48cf6055..3be58baeea3fabe4fcbbc4230e0694bb2bfc0d97 100644 |
--- a/content/common/child_process_messages.h |
+++ b/content/common/child_process_messages.h |
@@ -101,8 +101,16 @@ IPC_MESSAGE_CONTROL2(ChildProcessMsg_GetChildProfilerData, |
IPC_MESSAGE_CONTROL1(ChildProcessMsg_ProfilingPhaseCompleted, |
int /* profiling_phase */) |
+// Sent to set the shared memory buffer to be used for storing histograms that |
+// are to be reported by the browser process to UMA. The following message |
+// (GetChildNonPersistentHistogramData) will return any histograms created |
+// before this message is received but not any histograms created afterward. |
+IPC_MESSAGE_CONTROL2(ChildProcessMsg_SetHistogramMemory, |
+ base::SharedMemoryHandle /* shm_handle */, |
+ int /* shm_size */) |
+ |
// Send to all the child processes to send back histogram data. |
-IPC_MESSAGE_CONTROL1(ChildProcessMsg_GetChildHistogramData, |
+IPC_MESSAGE_CONTROL1(ChildProcessMsg_GetChildNonPersistentHistogramData, |
int /* sequence_number */) |
// Sent to child processes to tell them to enter or leave background mode. |