| Index: content/common/child_process_messages.h
|
| diff --git a/content/common/child_process_messages.h b/content/common/child_process_messages.h
|
| index 140396924e104d14909a56e4accc4ff9b5c56306..3bbd9fcc88da460ebb8c3e13e635f8ad0887fb5c 100644
|
| --- a/content/common/child_process_messages.h
|
| +++ b/content/common/child_process_messages.h
|
| @@ -83,6 +83,15 @@ IPC_MESSAGE_CONTROL0(ChildProcessMsg_EndTracing)
|
| // Sent to all child processes to get trace buffer fullness.
|
| IPC_MESSAGE_CONTROL0(ChildProcessMsg_GetTraceBufferPercentFull)
|
|
|
| +// Sent to all child processes to set watch event.
|
| +IPC_MESSAGE_CONTROL3(ChildProcessMsg_SetWatchEvent,
|
| + std::string /* category_name */,
|
| + std::string /* event_name */,
|
| + int /* num_occurrences */)
|
| +
|
| +// Sent to all child processes to clear watch event.
|
| +IPC_MESSAGE_CONTROL0(ChildProcessMsg_CancelWatchEvent)
|
| +
|
| // Tell the child process to enable or disable the profiler status.
|
| IPC_MESSAGE_CONTROL1(ChildProcessMsg_SetProfilerStatus,
|
| tracked_objects::ThreadData::Status /* profiler status */)
|
| @@ -117,7 +126,8 @@ IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_EndTracingAck,
|
| std::vector<std::string> /* known_categories */)
|
|
|
| // Sent if the trace buffer becomes full.
|
| -IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_TraceBufferFull)
|
| +IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TraceNotification,
|
| + int /* base::debug::TraceLog::Notification */)
|
|
|
| // Child processes send trace data back in JSON chunks.
|
| IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TraceDataCollected,
|
|
|