| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 // PPP_Instance_Private. | 392 // PPP_Instance_Private. |
| 393 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject, | 393 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject, |
| 394 PP_Instance /* instance */, | 394 PP_Instance /* instance */, |
| 395 ppapi::proxy::SerializedVar /* result */) | 395 ppapi::proxy::SerializedVar /* result */) |
| 396 | 396 |
| 397 // PPP_Messaging. | 397 // PPP_Messaging. |
| 398 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, | 398 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, |
| 399 PP_Instance /* instance */, | 399 PP_Instance /* instance */, |
| 400 ppapi::proxy::SerializedVar /* message */) | 400 ppapi::proxy::SerializedVar /* message */) |
| 401 | 401 |
| 402 // PPP_MouseLock_Dev. | 402 // PPP_MouseLock. |
| 403 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, | 403 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, |
| 404 PP_Instance /* instance */) | 404 PP_Instance /* instance */) |
| 405 | 405 |
| 406 // PPB_URLLoader | 406 // PPB_URLLoader |
| 407 // (Messages from browser to plugin to notify it of changes in state.) | 407 // (Messages from browser to plugin to notify it of changes in state.) |
| 408 IPC_MESSAGE_ROUTED1( | 408 IPC_MESSAGE_ROUTED1( |
| 409 PpapiMsg_PPBURLLoader_UpdateProgress, | 409 PpapiMsg_PPBURLLoader_UpdateProgress, |
| 410 ppapi::proxy::PPBURLLoader_UpdateProgress_Params /* params */) | 410 ppapi::proxy::PPBURLLoader_UpdateProgress_Params /* params */) |
| 411 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBURLLoader_ReadResponseBody_Ack, | 411 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBURLLoader_ReadResponseBody_Ack, |
| 412 ppapi::HostResource /* loader */, | 412 ppapi::HostResource /* loader */, |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1101 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1101 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
| 1102 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1102 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
| 1103 ppapi::HostResource /* video_decoder */, | 1103 ppapi::HostResource /* video_decoder */, |
| 1104 int32_t /* picture buffer id */) | 1104 int32_t /* picture buffer id */) |
| 1105 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1105 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
| 1106 ppapi::HostResource /* video_decoder */) | 1106 ppapi::HostResource /* video_decoder */) |
| 1107 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1107 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
| 1108 ppapi::HostResource /* video_decoder */) | 1108 ppapi::HostResource /* video_decoder */) |
| 1109 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1109 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
| 1110 ppapi::HostResource /* video_decoder */) | 1110 ppapi::HostResource /* video_decoder */) |
| OLD | NEW |