| Index: chrome/common/render_messages_internal.h
|
| ===================================================================
|
| --- chrome/common/render_messages_internal.h (revision 21465)
|
| +++ chrome/common/render_messages_internal.h (working copy)
|
| @@ -459,10 +459,12 @@
|
| IPC_MESSAGE_ROUTED0(ViewMsg_ShouldClose)
|
|
|
| // Instructs the renderer to close the current page, including running the
|
| - // onunload event handler. Expects a ClosePage_ACK message when finished.
|
| - IPC_MESSAGE_ROUTED2(ViewMsg_ClosePage,
|
| - int /* new_render_process_host_id */,
|
| - int /* new_request_id */)
|
| + // onunload event handler. See the struct in render_messages.h for more.
|
| + //
|
| + // Expects a ClosePage_ACK message when finished, where the parameters are
|
| + // echoed back.
|
| + IPC_MESSAGE_ROUTED1(ViewMsg_ClosePage,
|
| + ViewMsg_ClosePage_Params)
|
|
|
| // Asks the renderer to send back stats on the WebCore cache broken down by
|
| // resource types.
|
| @@ -1215,10 +1217,9 @@
|
| bool /* proceed */)
|
|
|
| // Indicates that the current page has been closed, after a ClosePage
|
| - // message.
|
| - IPC_MESSAGE_ROUTED2(ViewHostMsg_ClosePage_ACK,
|
| - int /* new_render_process_host_id */,
|
| - int /* new_request_id */)
|
| + // message. The parameters are just echoed from the ClosePage request.
|
| + IPC_MESSAGE_ROUTED1(ViewHostMsg_ClosePage_ACK,
|
| + ViewMsg_ClosePage_Params)
|
|
|
| IPC_MESSAGE_ROUTED4(ViewHostMsg_DidDownloadFavIcon,
|
| int /* Identifier of the request */,
|
|
|