| Index: chrome/common/render_messages_internal.h
|
| diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
|
| index fc449b8a681ace7a02b3559e3cad37303f5ef016..edb68d25f8ecc1d60876c20509ca4abf4adae8f5 100644
|
| --- a/chrome/common/render_messages_internal.h
|
| +++ b/chrome/common/render_messages_internal.h
|
| @@ -653,6 +653,10 @@ IPC_MESSAGE_CONTROL2(ViewMsg_GpuChannelEstablished,
|
| IPC::ChannelHandle /* handle to channel */,
|
| GPUInfo /* stats about GPU process*/)
|
|
|
| +// Tells the renderer process to enable GPU_TRACE collection
|
| +IPC_MESSAGE_CONTROL1(ViewMsg_SetTraceEnabled,
|
| + bool /* enabled */)
|
| +
|
| // Notifies the renderer of the appcache that has been selected for a
|
| // a particular host. This is sent in reply to AppCacheMsg_SelectCache.
|
| IPC_MESSAGE_CONTROL2(AppCacheMsg_CacheSelected,
|
| @@ -1543,6 +1547,10 @@ IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_OpenChannelToPepperPlugin,
|
| base::ProcessHandle /* plugin_process_handle */,
|
| IPC::ChannelHandle /* handle to channel */)
|
|
|
| +// Trace data being forwarded to browser process
|
| +IPC_MESSAGE_CONTROL1(ViewHostMsg_TraceDataCollectedRemotely,
|
| + std::string /* json_events */)
|
| +
|
| // A renderer sends this to the browser process when it wants to start
|
| // a new instance of the Native Client process. The browser will launch
|
| // the process and return a handle to an IMC channel.
|
|
|