| Index: content/common/view_messages.h
|
| ===================================================================
|
| --- content/common/view_messages.h (revision 215720)
|
| +++ content/common/view_messages.h (working copy)
|
| @@ -1214,16 +1214,14 @@
|
|
|
| // Reply to ViewHostMsg_OpenChannelToPpapiBroker
|
| // Tells the renderer that the channel to the broker has been created.
|
| -IPC_MESSAGE_ROUTED3(ViewMsg_PpapiBrokerChannelCreated,
|
| - int /* request_id */,
|
| +IPC_MESSAGE_ROUTED2(ViewMsg_PpapiBrokerChannelCreated,
|
| base::ProcessId /* broker_pid */,
|
| IPC::ChannelHandle /* handle */)
|
|
|
| // Reply to ViewHostMsg_RequestPpapiBrokerPermission.
|
| // Tells the renderer whether permission to access to PPAPI broker was granted
|
| // or not.
|
| -IPC_MESSAGE_ROUTED2(ViewMsg_PpapiBrokerPermissionResult,
|
| - int /* request_id */,
|
| +IPC_MESSAGE_ROUTED1(ViewMsg_PpapiBrokerPermissionResult,
|
| bool /* result */)
|
|
|
| // Tells the renderer to empty its plugin list cache, optional reloading
|
| @@ -1905,9 +1903,8 @@
|
| // if necessary, and will return a handle to the channel on success.
|
| // On error an empty string is returned.
|
| // The browser will respond with ViewMsg_PpapiBrokerChannelCreated.
|
| -IPC_MESSAGE_CONTROL3(ViewHostMsg_OpenChannelToPpapiBroker,
|
| +IPC_MESSAGE_CONTROL2(ViewHostMsg_OpenChannelToPpapiBroker,
|
| int /* routing_id */,
|
| - int /* request_id */,
|
| base::FilePath /* path */)
|
|
|
| // Opens a Pepper file asynchronously. The response returns a file descriptor
|
| @@ -1923,7 +1920,7 @@
|
| // for every connection.
|
| // The browser will respond with ViewMsg_PpapiBrokerPermissionResult.
|
| IPC_MESSAGE_ROUTED3(ViewHostMsg_RequestPpapiBrokerPermission,
|
| - int /* request_id */,
|
| + int /* routing_id */,
|
| GURL /* document_url */,
|
| base::FilePath /* plugin_path */)
|
|
|
|
|