Chromium Code Reviews| Index: content/common/view_messages.h |
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
| index 04d5c098d0822bec5e87499b511eea4701c1b53a..3b9d92b0a884ebffe3b3f6a157854735455c01c6 100644 |
| --- a/content/common/view_messages.h |
| +++ b/content/common/view_messages.h |
| @@ -806,6 +806,11 @@ IPC_MESSAGE_ROUTED2(ViewMsg_SetHistoryLengthAndPrune, |
| int, /* merge_history_length */ |
| int32 /* minimum_page_id */) |
| +// Tells the renderer the browser's notion of its process ID. |
| +// Some subsystems, like LatencyInfo, require this to be known to the renderer. |
| +IPC_MESSAGE_CONTROL1(ViewMsg_SetRendererProcessID, |
| + int64 /* process_id */) |
|
jln (very slow on Chromium)
2013/10/07 18:25:42
Please, use base::ProcessId
|
| + |
| // Tells the renderer to create a new view. |
| // This message is slightly different, the view it takes (via |
| // ViewMsg_New_Params) is the view to create, the message itself is sent as a |
| @@ -1861,10 +1866,6 @@ IPC_MESSAGE_ROUTED3(ViewHostMsg_WebUISend, |
| std::string /* message */, |
| base::ListValue /* args */) |
| -// Requests a snapshot of the given window. |
| -IPC_MESSAGE_ROUTED1(ViewHostMsg_GetWindowSnapshot, |
| - int /* snapshot_id */) |
| - |
| // A renderer sends this to the browser process when it wants to create a ppapi |
| // plugin. The browser will create the plugin process if necessary, and will |
| // return a handle to the channel on success. |